在文件系统动态 ax 上创建文件夹
我需要检查某个文件夹是否存在于特定位置,如果不存在,则创建该文件夹并在那里保存适当的文件。我如何使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要检查文件夹是否存在,您可以使用
WinApi::pathExists
,创建一个
WinApi::createDirectory
或WinApi::createDirectoryPath
:我不知道“适当的文件”是什么意思,但看看
TextIO
、BinaryIO
或其他 *IO 类。To check folder existence you can use
WinApi::pathExists
,to create one
WinApi::createDirectory
orWinApi::createDirectoryPath
:I have no idea what is meant by "the appropriate file", but have a look at the
TextIO
,BinaryIO
or the other *IO classes.