c程式設計,手動可以開啟正在被修改的 檔案,用程式的File或者fileinfo都打不開,請教高手

2022-10-20 22:10:14 字數 398 閱讀 4190

1樓:影迷寶

用openfiledialog開啟檔案,然後用streamreader來讀取內容。

using system.io;

openfiledialog odig = new openfiledialog();

odig.filter = "*.txt|*.txt";

if (odig.showdialog() == dialogresult.cancel)

return;

streamreader reader = new streamreader(odig.filename,encoding.unicode);

string text = reader.readtoend();

reader.close();

c 程式設計問題,c 程式設計問題

include using namespace std define n 256 int isprime int x return b void main int n,a 256 i cin n if n n n n for i 0 i a i for i 0 i include include u...

C 程式設計題目,C 程式設計題目!!!!

先做第一題 class cstudent 基類在校人員的宣告 void input 2 一個輸入函式,用於鍵盤輸入學生的資訊 void output 輸出資料成員的函式 不含編號 void main 第二題 class cshape class crectangle public cshape vi...

c語言程式設計,c語言程式設計

首先void是返回值型別,就是空值,也就是說這個函式裡面不能有返回值。delay這個是函式名,沒什麼好說。至於uchar 應該是引數型別,但是我還沒有見過這樣的引數型別 可能是我見識少了 我只見過 nchar,varchar nvarchar 之類的。而t就是引數啦 main printf 總運費 ...