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>
/// User’s home directory.
/// </summary>
home,
/// <summary>
/// Per-user application data directory.
/// </summary>
appData,
/// <summary>
/// The directory for storing your app’s configuration files,
/// which by default it is the appData directory appended with your app’s name.
/// </summary>
userData,
/// <summary>
/// Temporary directory.
/// </summary>
temp,
/// <summary>
/// The current executable file.
/// </summary>
exe,
/// <summary>
/// The libchromiumcontent library.
/// </summary>
module,
/// <summary>
/// The current user’s Desktop directory.
/// </summary>
desktop,
/// <summary>
/// Directory for a user’s “My Documents”.
/// </summary>
documents,
/// <summary>
/// Directory for a user’s downloads.
/// </summary>
downloads,
/// <summary>
/// Directory for a user’s music.
/// </summary>
music,
/// <summary>
/// Directory for a user’s pictures.
/// </summary>
pictures,
/// <summary>
/// Directory for a user’s videos.
/// </summary>
videos,
/// <summary>
/// The logs
/// </summary>
logs,
/// <summary>
/// Full path to the system version of the Pepper Flash plugin.
/// </summary>
pepperFlashSystemPlugin
}
}