码迷,mamicode.com
首页 >  
搜索关键字:getdir    ( 65个结果
python实现文件夹遍历
python 中os.path模块用于操作文件或文件夹 os.path.exists(path) 判断文件路径是否存在 dir = "c:\windows"if os.path.exists(dir) : print "dir exists"else : print "no exists" os.p ...
分类:编程语言   时间:2017-08-05 00:19:41    阅读次数:255
delphi 调用外部exe ,并等待调用程序运行结束
function TFmain.RunWait(FileName: string; Visibility: Integer): THandle;var zAppName: array[0..512] of Char; zCurDir: array[0..255] of Char; WorkDir: ...
分类:Windows程序   时间:2017-07-13 22:47:17    阅读次数:290
bash(3):遍历文件
#!/bin/bash function getdir(){ for element in `ls $1` do dir_or_file=$1"/"$element if [ -d $dir_or_file ] then getdir $dir_or_file else ... ...
分类:其他好文   时间:2017-07-06 15:55:04    阅读次数:256
C# 打开exe文件
第一种方法: System.Diagnostics.ProcessStartInfo info =new System.Diagnostics.ProcessStartInfo(path); info.WorkingDirectory = Path.GetDirectoryName(path); S ...
分类:Windows程序   时间:2017-06-15 12:56:52    阅读次数:288
Ganymed实现基本的自动化部署API
Ganymed SSH-2 for Java是一个纯Java实现的SHH2库,官网为http://www.ganymed.ethz.ch/ssh2/,最新的更新时间为2006年10月,在用之前,请...
分类:Windows程序   时间:2017-05-22 11:59:15    阅读次数:487
openFileOutput 文件属性设置、主动配置文件的可读写属性及事实上现方式
首先參考 Android 内部存储相关的函数(getCacheDir,getDir, getFileStreamPath,getFilesDir,openFileInput, ...) 1. 用openFileOutput方法改变文件的属性,可是该方法有局限性,他创建的文件仅仅能位于该程序的私有文件 ...
分类:其他好文   时间:2017-05-21 19:46:08    阅读次数:245
【NoSql】Redis实践篇-简单demo实现(一)
Redis是一个key-value存储系统。Redis的出现,非常大程度补偿了memcached这类key/value存储的不足,在部分场合能够对关系数据库起到非常好的补充作用 Redis是一个key-value存储系统。和Memcached相似。它支持存储的value类型相对很多其它,包含stri ...
分类:数据库   时间:2017-05-11 19:37:47    阅读次数:226
第九章,小型资源管理器
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 7 namespace SmallResou ...
分类:其他好文   时间:2017-04-18 00:47:50    阅读次数:305
步步为营-16-资料管理器
说明:涉及到知识点:TreeView控件,递归调用, 1 先把架子搭起来 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Draw ...
分类:其他好文   时间:2017-04-16 17:05:00    阅读次数:195
步步为营-15-文件夹的操作
上一篇简单介绍了File文本文件的操作,这次简单介绍Directory的操作 Directory主要用于操作文件夹 常用方法 CreateDirectory;创建一个新的文件夹 Delete;删除文件夹 Move; 剪切文件夹 Exist;判断指定文件夹是否存在 具体应用 if(!Directory ...
分类:其他好文   时间:2017-04-16 14:55:13    阅读次数:197
65条   上一页 1 ... 3 4 5 6 7 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!