1樓:匿名使用者
3年半了都沒人回答你,我來幫你關閉吧
2樓:匿名使用者
我也想知道.我只知道有函式可以列出檔名,,但如何自己讀取這此不固定名稱的檔案這個真不知道。
lua 如何獲取某個資料夾的所有檔案的列表
3樓:不屑寵兒
local lfs = require"lfs"
function attrdir (path)for file in lfs.dir(path) doif file ~= "." and file ~= ".." then
local f = path..'/'..filelocal attr = lfs.
attributes (f)assert (type(attr) == "table")if attr.mode == "directory" thenprint(f)
endend
endend
attrdir ("e:\\lua")
c#如何讀取資料夾中的所有檔案?
4樓:一騎當後
直接使用c#遍歷指定檔案
夾中的所有檔案就可以實現;
參考如下:
directoryinfo thefolder=new directoryinfo(folderfullname);
//遍歷資料夾
foreach(directoryinfo nextfolder in thefolder.getdirectories())
this.listbox1.items.add(nextfolder.name);
//遍歷檔案
foreach(fileinfo nextfile in thefolder.getfiles())
this.listbox2.items.add(nextfile.name);
lua 建立檔案和資料夾
5樓:匿名使用者
--建立名字來
為自123的資料夾bai
os.execute("md 123")
--建立名du
字為zhi123.txt 內容為456的檔案daolocal file = io.open("123.txt","w")
file:write("456")
file:close()
資料夾怎樣加密呢,資料夾怎樣加密
如何對資料夾進行加密 也可以這樣操作 1.首先在同一個根目錄下建立一個excel 文件的目錄,這個文件你可以設立密碼.把你要加密的的資料夾編製成一個目錄在這個excel 文件中.2.把你要加密的資料夾都設定成 隱藏 點你要加密的資料夾右鍵屬性 點選 隱藏 方框 這樣你要加密的資料夾就在這個根目錄下找...
C如何實現獲取資料夾內所有檔案的檔名和更新日期,然後用CSV輸出
當然不能一次性獲取了,首先獲取所有檔案,然後再讀取每個檔案的檔名和更新日期了。在c 中讀寫檔案是怎樣查詢特定名稱的檔案 比如說你要查詢的特定檔案的名稱是怎樣的呢?c 程式對.csv 檔案中的內容抓取求思路。csv雖然顯示效果上接近excel,但本質上是一個txt檔案,每個資料之間用逗號分隔 你可以做...
如何用VBS監視資料夾,怎樣用vbs 讀取資料夾中所有檔案
寫個批處理的。echo off hello for r c hello i in txt do if ni 1 msg 警告 出現1.txt ping 127.1 nul goto hello pause 每4秒檢測一下c hello資料夾,如果出現1.txt就提示警告。ping 127.1 n 1...