*** empty log message ***

This commit is contained in:
Arvid Norberg 2005-08-16 20:18:11 +00:00
parent 2582c47cd8
commit 6c32f82fc5
1 changed files with 3 additions and 3 deletions

View File

@ -482,9 +482,9 @@ namespace libtorrent
save_path = complete(save_path);
#if defined(WIN32) && defined(UNICODE)
std::wstring wsave_path(safe_convert(save_path.native_file_string()));
if (!exists_win(save_path))
{
std::wstring wsave_path(safe_convert(save_path.native_file_string()));
CreateDirectory(wsave_path.c_str(), 0);
}
else if ((GetFileAttributes(wsave_path.c_str()) & FILE_ATTRIBUTE_DIRECTORY) == 0)
@ -506,8 +506,8 @@ namespace libtorrent
if (single_file.has_branch_path())
{
#if defined(WIN32) && defined(UNICODE)
std::wstring wsave_path(safe_convert((save_path / single_file.branch_path()))
.native_directory_string());
std::wstring wsave_path(safe_convert((save_path / single_file.branch_path())
.native_directory_string()));
CreateDirectory(wsave_path.c_str(), 0);
#else
create_directory(save_path / single_file.branch_path());