在文件系统动态 ax 上创建文件夹

发布于 2024-10-16 16:14:21 字数 81 浏览 1 评论 0原文

我需要检查某个文件夹是否存在于特定位置,如果不存在,则创建该文件夹并在那里保存适当的文件。我如何使用 X++ 实现此目的。

请指教。

i need to check if a folder exists in a particular location,if not then create that folder and save the appropriate file there.How can i acheive this using X++.

Please advice.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

清风不识月 2024-10-23 16:14:22

要检查文件夹是否存在,您可以使用 WinApi::pathExists,
创建一个 WinApi::createDirectoryWinApi::createDirectoryPath

str  path = 'C:\\tmp\\aFolder';
;
if (!WinApi::pathExists(path))
{
    WinApi::createDirectoryPath(path);
}

我不知道“适当的文件”是什么意思,但看看 TextIOBinaryIO 或其他 *IO 类。

To check folder existence you can use WinApi::pathExists,
to create one WinApi::createDirectory or WinApi::createDirectoryPath:

str  path = 'C:\\tmp\\aFolder';
;
if (!WinApi::pathExists(path))
{
    WinApi::createDirectoryPath(path);
}

I have no idea what is meant by "the appropriate file", but have a look at the TextIO, BinaryIO or the other *IO classes.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文