-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexport-data.ps1
61 lines (53 loc) · 2.56 KB
/
export-data.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
Add-Type -AssemblyName System.Windows.Forms
# Boîte de dialogue pour choisir le dossier de départ
$folderBrowser = New-Object System.Windows.Forms.FolderBrowserDialog
$folderBrowser.Description = [System.Text.Encoding]::UTF8.GetString([System.Text.Encoding]::Default.GetBytes("Sélectionnez le dossier à explorer"))
if ($folderBrowser.ShowDialog() -eq [System.Windows.Forms.DialogResult]::OK) {
$BasePath = $folderBrowser.SelectedPath
} else {
[System.Windows.Forms.MessageBox]::Show(
[System.Text.Encoding]::UTF8.GetString([System.Text.Encoding]::Default.GetBytes("Aucun dossier sélectionné. L'application va se fermer.")),
"Information",
[System.Windows.Forms.MessageBoxButtons]::OK,
[System.Windows.Forms.MessageBoxIcon]::Information
)
exit
}
# Boîte de dialogue pour choisir l'emplacement du fichier de sortie
$saveFileDialog = New-Object System.Windows.Forms.SaveFileDialog
$saveFileDialog.Filter = "Fichiers texte (*.txt)|*.txt"
$saveFileDialog.Title = [System.Text.Encoding]::UTF8.GetString([System.Text.Encoding]::Default.GetBytes("Enregistrer le fichier des dossiers"))
$saveFileDialog.FileName = "dossiers.txt"
if ($saveFileDialog.ShowDialog() -eq [System.Windows.Forms.DialogResult]::OK) {
$OutputFile = $saveFileDialog.FileName
} else {
[System.Windows.Forms.MessageBox]::Show(
[System.Text.Encoding]::UTF8.GetString([System.Text.Encoding]::Default.GetBytes("Aucun emplacement de fichier sélectionné. L'application va se fermer.")),
"Information",
[System.Windows.Forms.MessageBoxButtons]::OK,
[System.Windows.Forms.MessageBoxIcon]::Information
)
exit
}
# Fonction pour exporter les dossiers
function Export-FolderPaths {
param (
[string]$Path,
[string]$OutputFile
)
# Récupérer tous les dossiers récursivement
Get-ChildItem -Path $Path -Directory -Recurse -ErrorAction SilentlyContinue |
ForEach-Object {
# Ajouter des guillemets autour du chemin et remplacer les backslashes (\) par des double-slashes (//)
'"' + ($_.FullName -replace '\\', '//') + '"'
} | Out-File -FilePath $OutputFile -Encoding UTF8
}
# Exécuter la fonction d'exportation
Export-FolderPaths -Path $BasePath -OutputFile $OutputFile
# Message de confirmation
[System.Windows.Forms.MessageBox]::Show(
[System.Text.Encoding]::UTF8.GetString([System.Text.Encoding]::Default.GetBytes("Export terminé avec succès : $OutputFile")),
"Succès",
[System.Windows.Forms.MessageBoxButtons]::OK,
[System.Windows.Forms.MessageBoxIcon]::Information
)