資料夾不存在則建立

2021-06-20 16:49:50 字數 423 閱讀 2031

注意只能一級一級地操作,不能一次重建兩層路徑。

cstring strfilepath = _t("c:\\a\\");//檔案路徑

if(!pathfileexists(strfilepath))//資料夾不存在則建立

{createdirectory(strfilepath,null);

strfilepath = _t("c:\\a\\aa\\");

if(!pathfileexists(strfilepath))//資料夾不存在則建立

{createdirectory(strfilepath,null);

以上是vs2010的結果

用vc6.0時,需要加標頭檔案#include "shlwapi.h"

有可能出現無法識別的外部符號時,需要工程-》設定-》連線,新增庫檔案shlwapi.lib

判斷資料夾是否存在,不存在則建立資料夾

public static boolean i ists string s param args public static void main string args else 得到檔案的相對路徑 string path this.getclass getclassloader getresour...

java建立資料夾不存在的檔案

需求 根據不同模板型別,存放在同一目錄不同資料夾下 最初做法 直接使用file類,new乙個file string filename d temp rpt test.txt file file new file filename if file.exists file.createnewfile 最...

ASP如何檢測某資料夾是否存在,不存在則自動建立

都不完善,我想樓主的意思是建立無極深度目錄吧,給個我寫的 建立新資料夾 允許無級建立 1 35 2005 1 31 public function createfolder folderpath dim sobjfso dim arrfolder dim i set sobjfso server.c...