Condividi tramite


Funzione create_symlink

Crea un token collegamento a un file esistente.

template<class Path1, class Path2>
inline void create_sym_link(
   const Path1& Pval1,
   const Path2& Pval2
);
template<class Path1, class Path2>
inline error_code create_sym_link(
   const Path1& Pval1,
   const Path2& Pval2,
   error_code& Code
);

Parametri

  • Pval1
    Un oggetto di Path che rappresenta il nome di un file esistente. Path può essere basic_path o un tipo derivato da basic_path.

  • Pval2
    Un oggetto di Path contenente il nome del file di collegamento dei token.

  • Code
    Oggetto error_code.

Valore restituito

La seconda funzione restituisce Code.

Note

Un collegamento token è un oggetto di tipo file system che indica un altro oggetto di tipo file system.

Se il collegamento token non può essere creato, la prima funzione genera basic_filesystem_error.

La seconda funzione assegna a Code qualsiasi codice di errore associato all'operazione.

Requisiti

Intestazione: filesystem

Spazio dei nomi: std::tr2::sys

Vedere anche

Riferimenti

<filesystem>

Altre risorse

File di intestazione libreria standard C++