Skip to content

Instantly share code, notes, and snippets.

@hervehobbes
Created May 4, 2014 17:17
Show Gist options
  • Save hervehobbes/1c12bc78108a37511878 to your computer and use it in GitHub Desktop.
Save hervehobbes/1c12bc78108a37511878 to your computer and use it in GitHub Desktop.
Comment obtenir l'emplacement du répertoire AppData\Roaming
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