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