本地檔案簡單操作

2021-09-30 12:06:19 字數 606 閱讀 4489

首先大致說說c#檔案本地檔案操作

在說之前我們知道乙個檔案.txt,excel,dll等都是儲存在硬碟或叫磁碟上面,然後知道了c#是通過操作流來讀取和寫入這些檔案 ——那麼用這裡就用到了兩個重要的操縱。filestream和streamwrite,streamreader,memorystream等,它們的引用空間是system.io。

//讀取檔案.txt

using(filestream fs = file.openread(path))

或者直接修改字串:

filestream fs = file.openread(path);

streamwriter sw =  new streamwriter(fs);

sw.writeline(string);

sw.close();

fs.close();

然後我們說說在本地硬碟上面建立資料夾,這裡用到directory這個東東,用來操作file資料夾的。比如你想建乙個資料夾:directoy.createdirectory(@"c\users\name\destop\filename");

刪除的話

directory.delete(stringpath);

本地檔案操作類

public class locahostutils file file2 new file file1,bundname filenamee if file2.exists catch ioexception e 一行一行的讀 filewriter fw null bufferedwriter b...

docker操作本地檔案

docker使用過程中,如果要操作本地檔案,就需要在操作的目錄中建立乙個docker compose.yml檔案。docker compose.yml version 3 services web image tesseractshadow tesseract4re build container ...

cordova操作Android本地檔案系統

cordova提供了file外掛程式,這個外掛程式可以訪問手機上大部分檔案和資料夾,當然,首先肯定是需要安裝cordova以及安裝它的外掛程式 cordova plugin file 了,具體如何安裝請讀者自行檢視官網,筆者就不再贅述 1.cordova 建立本地檔案 在訪問android本地系統檔...