#include <windows.h>
#include <string>
#include <vector>
#include <fstream>
#include <filesystem>
#include "HmCppInvoke.h"
using
namespace
Hidemaru;
using
namespace
std;
extern
"C"
__declspec
(
dllexport
)
THmNumber
test() {
Hm.funcDllExport();
try
{
filesystem::path openfile = Hm.Edit.getFilePath();
if
(filesystem::exists(openfile)) {
Hm.OutputPane.output(L
"ファイルは存在します\r\n"
);
}
else
{
Hm.OutputPane.output(L
"ファイルは存在しません\r\n"
);
}
filesystem::path test = filesystem::path(
"C:"
) /
"aaa"
/
"bbb.txt"
;
if
(filesystem::exists(test)) {
wstring
filename = test.filename();
Hm.OutputPane.output(filename + L
"は存在します\r\n"
);
}
else
{
wstring
filename = test.filename();
Hm.OutputPane.output(filename + L
"は存在しません\r\n"
);
}
}
catch
(exception& e) {
auto wide_what = Text::Encoding::cp932_to_utf16( e.what() );
Hm.OutputPane.output(wide_what + L
"\r\n"
);
}
return
1;
}