我使用CreateProcess
复制文件。如果PC处于脱机状态,如果目录不存在,我也可以捕获不同的错误。
这是我遇到的问题:如果所有复制都成功则返回0作为错误代码,如果源文件夹中没有文件则返回0,因此不进行复制。我必须检测源文件夹中是否没有文件。我怎么能在MFC VC ++ 2013中做到这一点?
我花了好几个小时尝试不同的解决方案,但我的知识还不足以实现我在互联网上找到的所有解决方案。所以我要问代码,然后我会理解。提前谢谢。
这是我使用的代码:
temp_dest = _T("/min /c xcopy \"D:\\Test\\*.*\" \"") + m_destination + _T("\" /Y /E /Q");
LPTSTR temp_dest2 = (LPTSTR)(LPCTSTR)temp_dest;
STARTUPINFO sinfo;
PROCESS_INFORMATION pinfo;
memset(&sinfo, 0, sizeof(STARTUPINFO));
memset(&pinfo, 0, sizeof(PROCESS_INFORMATION));
sinfo.dwFlags = STARTF_USESHOWWINDOW;
sinfo.wShowWindow = SW_HIDE;
BOOL bSucess = CreateProcess(L"C:\\Windows\\System32\\cmd.exe", temp_dest2, NULL, NULL, FALSE, CREATE_DEFAULT_ERROR_MODE, NULL, NULL, &sinfo, &pinfo);
DWORD dwCode;
TerminateProcess(pinfo.hProcess, 2);
GetExitCodeProcess(pinfo.hProcess, &dwCode);
TCHAR msg2[100];
StringCbPrintf(msg2, 100, TEXT("%X"), dwCode);
MessageBox(msg2, (LPCWSTR)L"DWCode 2", MB_OK | MB_ICONERROR);
if (dwCode == 4)
{
MessageBox((LPCWSTR)L"DW 4", (LPCWSTR)L"Path not found", MB_OK | MB_ICONERROR);
}
if (dwCode == 2)
{
MessageBox((LPCWSTR)L"DW 4", (LPCWSTR)L"PC Offline", MB_OK | MB_ICONERROR);
}
答案 0 :(得分:4)
如果您可以使用C ++ 17中引入的directory_iterator
头文件中的<filesystem>
:
bool IsEmptyDirectory( const wchar_t* dir )
{
return std::filesystem::directory_iterator( std::filesystem::path( dir ) )
== std::filesystem::directory_iterator();
}
可能需要std::experimental::filesystem
而不是std::filesystem
。
我曾尝试将其移植到VC 2013,但只有char
版似乎可以编译
bool IsEmptyDirectory( const char* dir )
{
return std::tr2::sys::directory_iterator( std::tr2::sys::path( dir ) )
== std::tr2::sys::directory_iterator();
}
如果您想(或有)使用WinAPI:
bool IsEmptyDirectory( const wchar_t* dir )
{
wstring mask( dir);
mask += L"\\*";
WIN32_FIND_DATA data;
HANDLE find_handle = FindFirstFile( mask.c_str(), &data );
if ( find_handle == INVALID_HANDLE_VALUE )
{
// Probably there is no directory with given path.
// Pretend that it is empty.
return true;
}
bool empty = true;
do
{
// Any entry but . and .. means non empty folder.
if ( wcscmp( data.cFileName, L"." ) != 0 && wcscmp( data.cFileName, L".." ) != 0 )
empty = false;
} while ( empty && FindNextFile( find_handle, &data ) );
FindClose( find_handle );
return empty;
}
答案 1 :(得分:3)
您可以使用WIN32函数GetFileAttributes(..)检查文件是否存在:
//in your actual ajax call
$http.get({responseType: 'blob'})
//and in your response
vm.image = URL.createObjectURL( response.data );
另一种方法可能是尝试打开文件(如果成功再次关闭它)。