Files
Electron.NET/ElectronNET.API/Entities/PathName.cs
2017-10-24 21:43:27 +02:00

80 lines
1.7 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
namespace ElectronNET.API.Entities
{
/// <summary>
///
/// </summary>
public enum PathName
{
/// <summary>
/// Users home directory.
/// </summary>
home,
/// <summary>
/// Per-user application data directory.
/// </summary>
appData,
/// <summary>
/// The directory for storing your apps configuration files,
/// which by default it is the appData directory appended with your apps name.
/// </summary>
userData,
/// <summary>
/// Temporary directory.
/// </summary>
temp,
/// <summary>
/// The current executable file.
/// </summary>
exe,
/// <summary>
/// The libchromiumcontent library.
/// </summary>
module,
/// <summary>
/// The current users Desktop directory.
/// </summary>
desktop,
/// <summary>
/// Directory for a users “My Documents”.
/// </summary>
documents,
/// <summary>
/// Directory for a users downloads.
/// </summary>
downloads,
/// <summary>
/// Directory for a users music.
/// </summary>
music,
/// <summary>
/// Directory for a users pictures.
/// </summary>
pictures,
/// <summary>
/// Directory for a users videos.
/// </summary>
videos,
/// <summary>
/// The logs
/// </summary>
logs,
/// <summary>
/// Full path to the system version of the Pepper Flash plugin.
/// </summary>
pepperFlashSystemPlugin
}
}