我已尝试包含IOUtils库并使用CSIDL命令,但它无效...
以下是代码的一部分:
//------------------- Includes -----------------------
#include <fmx.h>
#include <IOUtils.hpp>
#pragma hdrstop
#include "Unit1.h"
#include "Unit2.h"
#include "Unit3.h"
//---------------------- end ------------------------
//---- On Form Show (bugged event: It doesn't create the needed folder) ----
void __fastcall TfrmInicio::FormShow(TObject *Sender)
{
if (TDirectory::Exists("CSIDL_APPDATA\\Nintersoft\\Ninterfin")) {
if (FileExists("CSIDL_APPDATA\\Nintersoft\\Ninterfin\\Inf.nf")) {
mmInfo->Lines->LoadFromFile("CSIDL_APPDATA\\Nintersoft\\Ninterfin\\Inf.nf");
}
}
else {
TDirectory::CreateDirectory("CSIDL_APPDATA\\Nintersoft\\Ninterfin");
}
}
//--------------------------------- end ------------------------------------
我希望你能帮帮我... 非常感谢XD
答案 0 :(得分:2)
您不应该将“CSIDL_APPDATA”本身直接硬编码到目录路径字符串中。 CSIDL_APPDATA
是虚拟文件夹的ID号(具体为26),您必须使用Win32 API在运行时动态解析,例如:
void __fastcall TfrmInicio::FormShow(TObject *Sender)
{
WCHAR szPath[MAX_PATH+1] = {0};
if (SUCCEEDED(SHGetFolderPathW(FmxHandleToHWND(Handle), CSIDL_APPDATA, NULL, SHGFP_TYPE_CURRENT, szPath)))
{
String DirPath = TPath::Combine(szPath, L"Nintersoft\\Ninterfin");
TDirectory::CreateDirectory(DirPath);
String FileName = TPath::Combine(DirPath, L"Inf.nf");
if (TFile::Exists(FileName))
mmInfo->Lines->LoadFromFile(FileName);
}
}
或者,在Vista及更高版本中,请改为使用SHGetKnownFolderPath()
:
void __fastcall TfrmInicio::FormShow(TObject *Sender)
{
PWSTR pszPath;
if (SUCCEEDED(SHGetKnownFolderPath(FOLDERID_RoamingAppData, 0, NULL, &pszPath)))
{
String DirPath = TPath::Combine(pszPath, L"Nintersoft\\Ninterfin");
CoTaskMemFree(pszPath);
TDirectory::CreateDirectory(DirPath);
String FileName = TPath::Combine(DirPath, L"Inf.nf");
if (TFile::Exists(FileName))
mmInfo->Lines->LoadFromFile(FileName);
}
}
或者,使用Sysutils::GetEnvironmentVariable()
检索%APPDATA%
的值,而不是使用CSIDL
或KNOWNFOLDERID
:
void __fastcall TfrmInicio::FormShow(TObject *Sender)
{
String DirPath = TPath::Combine(Sysutils::GetEnvironmentVariable(L"APPDATA"), L"Nintersoft\\Ninterfin");
TDirectory::CreateDirectory(DirPath);
String FileName = TPath::Combine(DirPath, L"Inf.nf");
if (TFile::Exists(FileName))
mmInfo->Lines->LoadFromFile(FileName);
}
答案 1 :(得分:-1)
我认为这应该可以帮助你(=。
File NewDirectory.cpp
//includes standard libraries
#include <iostream>
//includes windows libraries
#include <windows.h>
//includes header files
int NewDirectory(){
char *Directory = "C://Users/user/AppData/somefolder/";
//Checks if folder of file exist
int FilePath = PathFileExist(Directory);
//Makes new directory
int NewFolder = CreateDirectory(Directory, NULL);
if(!FilePath){
std::cout << "Error could not find folder, trying to create new Directory" << std::endl;
NewFolder;
if(!NewFolder){
std::cout << "Could not make new directory closing" << std::endl;
return 1;
} else {
std::cout << "New Directory" << Directory << "Created!" << std::endl;
return 0;
}
} else {
std::cout << "the Directory" << Directory << "already exist" << std::endl;
return 0;
}
}