ModulesFs ModuleMelon.std.fs.moveFileAsync(path)On this pageMelon.std.fs.moveFileAsync(path)Moves the specified file to the specified target.Status: stable Returns: Promise<void>ParametersNameTypeDescriptionpathstringThe target pathExample usageconst { moveFileAsync } = Melon.fs;await moveFileAsync("./hi.text", "./myDirectory/hi.txt");