1 回答

TA貢獻(xiàn)1804條經(jīng)驗(yàn) 獲得超8個(gè)贊
簡(jiǎn)短的回答是您只需調(diào)用File.Move, 并將現(xiàn)有文件的完整路徑作為第一個(gè)參數(shù)傳遞,并傳遞目標(biāo)的完整路徑和文件名。
您可以構(gòu)建目標(biāo)路徑,然后像這樣移動(dòng)文件:
foreach (string file in fileNames)
{
// Build the destination path
var destination = Path.Combine(
FBD.SelectedPath, // The root destination folder
Path.GetExtension(file).Replace(".", ""), // The file extension folder
Path.GetFileName(file)); // The file name (including extension)
// Move the file
File.Move(file, destination);
}
- 1 回答
- 0 關(guān)注
- 177 瀏覽
添加回答
舉報(bào)