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
function TFmain.RunWait(FileName: string; Visibility: Integer): THandle;var zAppName: array[0..512] of Char; zCurDir: array[0..255] of Char; WorkDir: ...
#!/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
第一种方法: System.Diagnostics.ProcessStartInfo info =new System.Diagnostics.ProcessStartInfo(path); info.WorkingDirectory = Path.GetDirectoryName(path); S ...
Ganymed
SSH-2 for Java是一个纯Java实现的SHH2库,官网为http://www.ganymed.ethz.ch/ssh2/,最新的更新时间为2006年10月,在用之前,请...
首先參考 Android 内部存储相关的函数(getCacheDir,getDir, getFileStreamPath,getFilesDir,openFileInput, ...) 1. 用openFileOutput方法改变文件的属性,可是该方法有局限性,他创建的文件仅仅能位于该程序的私有文件 ...
分类:
其他好文 时间:
2017-05-21 19:46:08
阅读次数:
245
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
说明:涉及到知识点:TreeView控件,递归调用, 1 先把架子搭起来 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Draw ...
分类:
其他好文 时间:
2017-04-16 17:05:00
阅读次数:
195
上一篇简单介绍了File文本文件的操作,这次简单介绍Directory的操作 Directory主要用于操作文件夹 常用方法 CreateDirectory;创建一个新的文件夹 Delete;删除文件夹 Move; 剪切文件夹 Exist;判断指定文件夹是否存在 具体应用 if(!Directory ...
分类:
其他好文 时间:
2017-04-16 14:55:13
阅读次数:
197