|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using System.Runtime.InteropServices;
using System.Runtime.InteropServices.Marshalling;
internal static partial class Interop
{
internal static partial class Sys
{
/// <summary>
/// Renames a file, moving to the correct destination if necessary. There are many edge cases to this call, check man 2 rename for more info
/// </summary>
/// <param name="oldPath">Path to the source item</param>
/// <param name="newPath">Path to the desired new item</param>
/// <returns>
/// Returns 0 on success; otherwise, returns -1
/// </returns>
[LibraryImport(Libraries.SystemNative, EntryPoint = "SystemNative_Rename", SetLastError = true)]
internal static partial int Rename([MarshalUsing(typeof(SpanOfCharAsUtf8StringMarshaller))] ReadOnlySpan<char> oldPath, [MarshalUsing(typeof(SpanOfCharAsUtf8StringMarshaller))] ReadOnlySpan<char> newPath);
}
}
|