c如何給檔案重新命名,C 如何給檔案重新命名

時間 2021-05-02 22:13:16

1樓:匿名使用者

我寫了個winform的控制台應用程式。你看看。 static void main(string args)

private static bool movefile(string oldpath, string movenewpath)

//建立檔案

}if (!file.exists(movenewpath))//判斷路徑是是否存在

//建立檔案

}if (file.exists(movenewpath))move到.", oldpath, movenewpath);

break;

case "n":

issuccess = false;

break;

default:

console.writeline("輸入有誤");

break;}}

else

}catch (exception e)

", e.tostring());

}return issuccess;}

2樓:匿名使用者

可以用file.move 給檔案或者資料夾重新命名下面的應該可以的僅供參考 原形: public static void move ( string sourcefilename, string destfilename ) 引數 sourcefilename 要移動的檔案的名稱。

destfilename 檔案的新路徑。 using system; using system.io; class test } // ensure that the target does not exist.

if (file.exists(path2)) file.delete(path2); // move the file.

file.move(path, path2); console.writeline(" was moved to .

", path, path2); // see if the original exists now. if (file.exists(path)) else } catch (exception e) ", e.

tostring()); } } }

c#裡面怎麼給檔案和資料夾重新命名?

3樓:定復

以下為相對路徑

file.move("user.ini", "user1.ini"); 重新命名檔案

directory.move("1", "2"); 重新命名資料夾

4樓:匿名使用者

file.move()

directory.move()

c#如何給檔案或資料夾重新命名

5樓:匿名使用者

用file.move

原形:public static void move (string sourcefilename,string destfilename)引數sourcefilename

要移動的檔案的名稱。

destfilename

檔案的新路徑。

using system;

using system.io;

class test

}// ensure that the target does not exist.

if (file.exists(path2))file.delete(path2);

// move the file.

file.move(path, path2);

console.writeline(" was moved to .", path, path2);

// see if the original exists now.

if (file.exists(path))else

}catch (exception e)

", e.tostring());}}}

6樓:

move就是重新命名,

c語言中如何刪除檔案和重新命名檔案,舉個例子可以麼

函式名 rename 功 能 重新命名檔案 用 法 int rename char oldname,char newname 程式例 include int main void 函式名 remove 功 能 刪除乙個檔案 用 法 int remove char filename 程式例 includ...

c語言如何給動態分配的陣列賦值,C語言如何給動態分配的陣列賦值

那樣賦值也只能用可變參了.void set int value,int num,int b int malloc 3 sizeof int set b,3,4,5,6 set 設定變數,設定的數量,值1,值2. 1 當成普通陣列使用,用for迴圈即可賦值。2 例程 include include i...

c自制控制元件如何新增的新的屬性,C 如何給現有類新增新屬性

在自定義控制元件的類中新增兩個成員 一個私有一個公開,把公開的set get 與私有成員關連,在set和get過程中還可以處理額外內容,如改變其它值執行其它 等。如下 所示,其中categoryattribute為屬性發組資訊,descriptionattribute為說明,defaultvalue...