Created
May 4, 2014 17:17
-
-
Save hervehobbes/1c12bc78108a37511878 to your computer and use it in GitHub Desktop.
Comment obtenir l'emplacement du répertoire AppData\Roaming
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
namespace appData | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
// C:\Users\Herve\AppData\Roaming | |
Console.WriteLine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData)); | |
Console.WriteLine("Appuyer sur une touche"); | |
Console.ReadLine(); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment