检查文件是否存在 在此程序同目录下创建log.txt文件,以检测。 检查文件是否不存在 读取文件内容 在此程序同目录下创建name.txt文件,以检测。 写入文件 在此程序同目录下创建hello_world文件。 创建临时文件 计算文件行数 在程序同目录下创建"names.txt"文件,随便写几行字 ...
分类:
其他好文 时间:
2019-07-06 00:51:30
阅读次数:
127
import tempfile import tensorflow as tf input_data = [1, 2, 3, 5, 8] dataset = tf.data.Dataset.from_tensor_slices(input_data) # 定义迭代器。 iterator = data... ...
分类:
编程语言 时间:
2019-05-18 13:56:30
阅读次数:
112
import tempfile import tensorflow as tf train_files = tf.train.match_filenames_once("E:\\output.tfrecords") test_files = tf.train.match_filenames_once... ...
分类:
编程语言 时间:
2019-05-18 13:50:22
阅读次数:
113
闲来无事,在github上发现一个很有趣的project curlini,实现命令行对ini文件的增删改查和merge操作。起初会觉得至于如此小题大做么,但查阅之后,发现该项目对文件的操作比较精细,从文件锁FileLock、临时文件tempfile、SHA256 hashlib、退出执行atexit ...
分类:
Web程序 时间:
2019-05-02 15:41:10
阅读次数:
157
DirectoryInfo dir = new DirectoryInfo(AppContext.BaseDirectory); var path = dir.FullName + @"tempFile\"; var filePath = path + Guid.NewGuid() + fileNa... ...
分类:
Web程序 时间:
2019-04-12 11:56:51
阅读次数:
158
1 *分为四步 */ 2 /*第1步:创建临时表空间 */ 3 create temporarytablespace user_temp 4 tempfile 'D:\oracle\oradata\Oracle9i\user_temp.dbf' 5 size 50m 6 autoextend on ... ...
分类:
数据库 时间:
2019-03-20 15:44:22
阅读次数:
176
/** * 选择图片上传服务器 * num 允许传几张 */ const uploadImg = function(num, onlyCam = false) { return new Promise((resolve, reject) => { ... ...
分类:
微信 时间:
2019-03-19 12:06:47
阅读次数:
216
效果图 如上,js 如下,在页面循环图片就可以 ...
分类:
微信 时间:
2019-02-11 12:34:00
阅读次数:
218
用户、角色、权限、表空间 create tablespace test1_tablespace datafile ‘test1file.dbf’ size 10m; create temporary tablespace temptest1_tablespace tempfile ‘temp1fil ...
分类:
数据库 时间:
2018-12-26 11:37:42
阅读次数:
183
#-*-coding:utf-8-*-importre,osfromioimportBytesIOfromsaltapiauthimportSaltApifromjinja2importTemplatesalta=SaltApi()#contentsisdictdefTempdrawing(contents,flag=‘proxy‘):try:ifflag==‘proxy‘:tempfile=os
分类:
编程语言 时间:
2018-11-30 18:23:20
阅读次数:
189