大家好,在VB.NET中怎么创建一个文件夹
答案:2 悬赏:80 手机版
解决时间 2021-02-03 04:55
- 提问者网友:留有余香
- 2021-02-02 16:40
大家好,在VB.NET中怎么创建一个文件夹
最佳答案
- 五星知识达人网友:迷人又混蛋
- 2021-02-02 18:07
System.IO.Directory.CreateDirectory("C:\MyDir")
全部回答
- 1楼网友:雾月
- 2021-02-02 19:35
imports system.io
imports system.io.directory
' ======================================================
' 实现一个静态方法将指定文件夹下面的所有内容del
' 如果目标文件夹为只读属性就会报错。
' ======================================================
public shared sub deldir(byval srcpath as string, byval aimpath as string)
try
' 检查目标目录是否以目录分割字符\结束,如果不是则添加之
if aimpath(aimpath.length - 1) <> path.directoryseparatorchar then
aimpath += path.directoryseparatorchar
end if
'判断源目录是否存在,不存在则退出.
if (not directory.exists(srcpath)) then exit sub
' 判断目标目录是否存在如果不存在则新建之
if (not directory.exists(aimpath)) then directory.createdirectory(aimpath)
' 得到源目录的文件列表,该里面是包含文件以及目录路径的一个数组
dim filelist() as string = directory.getfilesystementries(srcpath)
' 遍历所有的文件和目录
for each filename as string in filelist
' 先当作目录处理如果存在这个目录就递归copy该目录下面的文件
if directory.exists(filename) then
' 直接delete文件
file.delete(aimpath + path.getfilename(filename))
end if
next
catch ex as exception
messagebox.show(ex.tostring())
end try
end sub然后你定义一个timer设定循环时间,时间到则调用这个即可
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯