c 生成指定字尾名的臨時檔案

2021-06-26 12:31:43 字數 2013 閱讀 3420

既然.net平台沒有提供這樣的方法,那麼我們就自己來實現:?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

publicstaticstringgettempfilename(stringextension)

publicstaticstringgettempfilename(stringprefix,stringextension)

///

/// 生成臨時檔案

///

/// 字首

/// 檔案字尾名,包含前導句點('.')

/// 指定在該目錄下生成,預設使用者目錄下的臨時目錄

/// 臨時檔案的完整路徑

publicstaticstringgettempfilename(stringprefix,stringextension,stringdirectory)

if(!directory.exists(directory))

tempfilename = prefix + guid.newguid().tostring() + extension;

tempfilename = path.combine(directory, tempfilename);

filestream fs =newfileinfo(tempfilename).create();

fs.close();

returntempfilename;

}

指定SharePoint臨時檔案的位置

指定sharepoint臨時檔案的位置 microsoft office sharepoint portal server 2003 可能需要為被爬網的文件建立臨時檔案 為了獲得最佳效能,臨時檔案的位置不應當是系統磁碟或者包含任何 sharepoint portal server 資料檔案 包括全文...

C 建立臨時檔案

1.在臨時檔案只能夠建立乙個臨時檔案並返回該檔案的完整路徑 在臨時檔案只能夠建立乙個臨時檔案並返回該檔案的完整路徑 c documents and settings yourname local settings temp t e6.tmp system.io.path.gettempfilenam...

C建立臨時檔案

前言 linux下除了有實實在在的檔案外,還可以建立臨時的檔案和目錄,這裡介紹兩個建立臨時檔案的函式,tmpfilef和mkstemp,以及建立臨時目錄的函式mkdtemp。這三個函式具體用法如下。一 建立乙個無名的臨時檔案,程式退出時關閉臨時檔案 1 標頭檔案 include 2 函式原型 fil...