Interficie del gestor de ficheros o365.
Más...
|
| bool | _CreateFolder (string tcDirectoryPath) |
| | Crea un directorio en O365.
|
| |
| bool | _DeleteFile (string tcFileName) |
| | Elimina un fichero en O365.
|
| |
| bool | _DeleteFolder (string tcDirectoryPath) |
| | Elimina un directorio en O365.
|
| |
| bool | _DirectoryExists (string tcDirectoryPath) |
| | Verifica si existe un directorio en O365.
|
| |
| List< string > | _GetFolderFilenamesList (string tcDirectoryPath) |
| | Devuelve una lista de los ficheros de un directorio.
|
| |
| bool | _FileExist (string tcFileName) |
| | Comprueba si existe un fichero en O365.
|
| |
| DialogResult | _GetPathFile (string tcTitle, string tcType="Todos los archivos (*.*)|*.*", string tcPath="") |
| | Abre un FileDialog, con selección de ficheros.
|
| |
| DialogResult | _GetPathFolder (string tcTitle) |
| | Abre un FileDialog, para la selección de carpetas.
|
| |
| bool | _IsPath (string tcPath) |
| | Valida si el path pasado por parámetros tiene algunos de los paths configuracios para O365.
|
| |
| bool | _OpenAndSavePath (string tcPathDestino, short tnTipo) |
| | Abre un FolderDialog y guarda la selección del usuario en el path pasado por parémetros.
|
| |
| void | _RaiseException (Exception toException) |
| | Método para trata excepciones.
|
| |
| bool | _RenameFolder (string tcDirectoryPath, string tcNewForderName) |
| | Renombra un directorio en O365.
|
| |
| bool | _UploadFile (string tcPathOriginal, string tcPathDestination) |
| | Sube un fichero a O365.
|
| |
| bool | _DownLoadFile (string oneDriveFilePath, string localFilePath) |
| | Descarga un fichero de OneDrive / o365.
|
| |
|
| string | _ErrorMessage [get, set] |
| | Texto de eventuales mensajes de error.
|
| |
| string | _Path [get, set] |
| | Path.
|
| |
| TipoConexion | _Tipo [get, set] |
| | Tipo de conexión.
|
| |
| TipoOneDrive | _TipoOneDrive [get, set] |
| | Tipo de conexión OneDrive (cuenta Onedrive para exportación de documentos, gráficas, listados, etc., o cuenta Onedrive para respaldo de gestión documental)
|
| |
Interficie del gestor de ficheros o365.
Definición en la línea 11 del archivo IFileDialog365.cs.
◆ _CreateFolder()
| bool sage.ew.interficies.IFileDialog365._CreateFolder |
( |
string | tcDirectoryPath | ) |
|
◆ _DeleteFile()
| bool sage.ew.interficies.IFileDialog365._DeleteFile |
( |
string | tcFileName | ) |
|
◆ _DeleteFolder()
| bool sage.ew.interficies.IFileDialog365._DeleteFolder |
( |
string | tcDirectoryPath | ) |
|
Elimina un directorio en O365.
- Parámetros
-
| tcDirectoryPath | Path del directorio a eliminar |
- Devuelve
- Boolean
◆ _DirectoryExists()
| bool sage.ew.interficies.IFileDialog365._DirectoryExists |
( |
string | tcDirectoryPath | ) |
|
Verifica si existe un directorio en O365.
- Parámetros
-
| tcDirectoryPath | Path del direstorio a validar |
- Devuelve
- Boolean
◆ _DownLoadFile()
| bool sage.ew.interficies.IFileDialog365._DownLoadFile |
( |
string | oneDriveFilePath, |
|
|
string | localFilePath ) |
Descarga un fichero de OneDrive / o365.
- Parámetros
-
| oneDriveFilePath | Path OneDrive del fichero |
| localFilePath | Path local donde ubicar el fichero |
- Devuelve
Implementado en sage.ew.o365.Clases.FileDialog365.
◆ _FileExist()
| bool sage.ew.interficies.IFileDialog365._FileExist |
( |
string | tcFileName | ) |
|
Comprueba si existe un fichero en O365.
- Parámetros
-
| tcFileName | Fichero a comprobar |
- Devuelve
- Boolean
◆ _GetFolderFilenamesList()
| List< string > sage.ew.interficies.IFileDialog365._GetFolderFilenamesList |
( |
string | tcDirectoryPath | ) |
|
◆ _GetPathFile()
| DialogResult sage.ew.interficies.IFileDialog365._GetPathFile |
( |
string | tcTitle, |
|
|
string | tcType = "Todos los archivos (*.*)|*.*", |
|
|
string | tcPath = "" ) |
Abre un FileDialog, con selección de ficheros.
- Parámetros
-
| tcTitle | Titulo del FileDialog |
| tcType | Filtro para los tipos de ficheros |
| tcPath | |
- Devuelve
- DialogResult
◆ _GetPathFolder()
| DialogResult sage.ew.interficies.IFileDialog365._GetPathFolder |
( |
string | tcTitle | ) |
|
Abre un FileDialog, para la selección de carpetas.
- Parámetros
-
| tcTitle | Titulo del FileDialog |
- Devuelve
- DialogResult
◆ _IsPath()
| bool sage.ew.interficies.IFileDialog365._IsPath |
( |
string | tcPath | ) |
|
Valida si el path pasado por parámetros tiene algunos de los paths configuracios para O365.
- Parámetros
-
- Devuelve
- bollean
Implementado en sage.ew.o365.Clases.FileDialog365.
◆ _OpenAndSavePath()
| bool sage.ew.interficies.IFileDialog365._OpenAndSavePath |
( |
string | tcPathDestino, |
|
|
short | tnTipo ) |
Abre un FolderDialog y guarda la selección del usuario en el path pasado por parémetros.
- Parámetros
-
| tcPathDestino | Path donde se guardará la selección del usuario |
| tnTipo | Tipo de Dialog 0 -> carpetas 1 -> ficheros |
- Devuelve
- Boolean
◆ _RaiseException()
| void sage.ew.interficies.IFileDialog365._RaiseException |
( |
Exception | toException | ) |
|
◆ _RenameFolder()
| bool sage.ew.interficies.IFileDialog365._RenameFolder |
( |
string | tcDirectoryPath, |
|
|
string | tcNewForderName ) |
Renombra un directorio en O365.
- Parámetros
-
| tcDirectoryPath | Path del directorio a renombrar |
| tcNewForderName | El nuevo nombre del directorio a renombrar. Sin path |
- Devuelve
- Boolean
◆ _UploadFile()
| bool sage.ew.interficies.IFileDialog365._UploadFile |
( |
string | tcPathOriginal, |
|
|
string | tcPathDestination ) |
Sube un fichero a O365.
- Parámetros
-
| tcPathOriginal | Path del fichero original |
| tcPathDestination | >Path del fichero destino |
- Devuelve
- Boolean
Implementado en sage.ew.o365.Clases.FileDialog365.
◆ _ErrorMessage
| string sage.ew.interficies.IFileDialog365._ErrorMessage |
|
getset |
◆ _Path
| string sage.ew.interficies.IFileDialog365._Path |
|
getset |
◆ _Tipo
◆ _TipoOneDrive
| TipoOneDrive sage.ew.interficies.IFileDialog365._TipoOneDrive |
|
getset |
Tipo de conexión OneDrive (cuenta Onedrive para exportación de documentos, gráficas, listados, etc., o cuenta Onedrive para respaldo de gestión documental)
Implementado en sage.ew.o365.Clases.FileDialog365.
Definición en la línea 31 del archivo IFileDialog365.cs.
La documentación de esta interface está generada del siguiente archivo:
- C:/actions-runner/_work/Sage.ES.Sage50/Sage.ES.Sage50/src/Sage.ES.S50/sage.ew.interficies/IFileDialog365.cs