Server.MapPath("~") "\" "Web.config"Server.MapPath("~") 是取當(dāng)前目錄上一級(jí)的路徑Server.MapPath(".") 是取當(dāng)前目錄的路徑
創(chuàng)新互聯(lián)主營(yíng)青縣網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營(yíng)網(wǎng)站建設(shè)方案,手機(jī)APP定制開(kāi)發(fā),青縣h5微信小程序定制開(kāi)發(fā)搭建,青縣網(wǎng)站營(yíng)銷推廣歡迎青縣等地區(qū)企業(yè)咨詢
在VS2008中.
很顯然,Getdirectories是獲取特定的文件夾的名稱.
Getfiles是獲取特定文件的名稱.
其他的版本沒(méi)有試過(guò).
只是當(dāng)時(shí)在學(xué)習(xí)VS2003的相關(guān)書籍介紹中,
Getdirectories是獲取特定的文件夾的名稱
Getfiles是獲取特定文件和文件夾的名稱,您需要檢測(cè)文件夾是否存在來(lái)檢查獲得的名稱是文件名還是文件夾名稱。
先用System.IO.Directory.GetDirectories函數(shù)獲取子目錄的名稱(包括其路徑),再用System.IO.Path.GetFileName獲取子目錄的名稱。下面是代碼:
Private Sub Button1_Click(sender As System.Object, e As System.EventArgs) Handles Button1.Click
For Each s In System.IO.Directory.GetDirectories("C:\Windows")
Console.WriteLine(System.IO.Path.GetFileName(s))
Next
End Sub
下面是部分輸出:
Application Data
AppPatch
assembly
BOCNET
Boot
Branding
ConfigSetRoot
Cursors
Debug
DigitalLocker
Downloaded Installations
Downloaded Program Files
ehome
en-US
Fonts
Globalization
Help
...
可能有更簡(jiǎn)潔的方法,你可以到MSDN看看
System.IO.Directory.GetDirectories:
System.IO.Path.GetFileName:
通用 I/O 任務(wù):