FileSystemOperationsExtensions.SetFileExpiryAsync Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Définit ou supprime l’heure d’expiration du fichier spécifié. Cette opération ne peut être exécutée que sur des fichiers. Les dossiers ne sont pas pris en charge.
public static System.Threading.Tasks.Task SetFileExpiryAsync (this Microsoft.Azure.Management.DataLake.Store.IFileSystemOperations operations, string accountName, string filePath, Microsoft.Azure.Management.DataLake.Store.Models.ExpiryOptionType expiryOption, long? expireTime = default, System.Threading.CancellationToken cancellationToken = default);
public static System.Threading.Tasks.Task SetFileExpiryAsync (this Microsoft.Azure.Management.DataLake.Store.IFileSystemOperations operations, string accountName, string path, Microsoft.Azure.Management.DataLake.Store.Models.ExpiryOptionType expiryOption, long? expireTime = default, System.Threading.CancellationToken cancellationToken = default);
static member SetFileExpiryAsync : Microsoft.Azure.Management.DataLake.Store.IFileSystemOperations * string * string * Microsoft.Azure.Management.DataLake.Store.Models.ExpiryOptionType * Nullable<int64> * System.Threading.CancellationToken -> System.Threading.Tasks.Task
static member SetFileExpiryAsync : Microsoft.Azure.Management.DataLake.Store.IFileSystemOperations * string * string * Microsoft.Azure.Management.DataLake.Store.Models.ExpiryOptionType * Nullable<int64> * System.Threading.CancellationToken -> System.Threading.Tasks.Task
<Extension()>
Public Function SetFileExpiryAsync (operations As IFileSystemOperations, accountName As String, filePath As String, expiryOption As ExpiryOptionType, Optional expireTime As Nullable(Of Long) = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task
<Extension()>
Public Function SetFileExpiryAsync (operations As IFileSystemOperations, accountName As String, path As String, expiryOption As ExpiryOptionType, Optional expireTime As Nullable(Of Long) = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task
Paramètres
- operations
- IFileSystemOperations
Groupe d’opérations pour cette méthode d’extension.
- accountName
- String
Compte Azure Data Lake Store sur lequel exécuter des opérations de système de fichiers.
- filePathpath
- String
Chemin d’accès Data Lake Store (commençant par « / ») du fichier sur lequel définir ou supprimer l’heure d’expiration.
- expiryOption
- ExpiryOptionType
Indique le type d’expiration à utiliser pour le fichier : 1. NeverExpire : ExpireTime est ignoré. 2. RelativeToNow : ExpireTime est un entier en millisecondes représentant la date d’expiration par rapport au moment où l’expiration du fichier est mise à jour. 3. RelativeToCreationDate : ExpireTime est un entier en millisecondes représentant la date d’expiration par rapport à la création du fichier. 4. Absolu : ExpireTime est un entier en millisecondes, en tant qu’horodatage Unix par rapport au 1/1/1970 00:00:00. Les valeurs possibles sont les suivantes : 'NeverExpire', 'RelativeToNow', 'RelativeToCreationDate', 'Absolute'
Heure d’expiration du fichier, correspondant à l’option ExpiryOption définie.
- cancellationToken
- CancellationToken
Jeton d'annulation.
Retours
S’applique à
Azure SDK for .NET