Skip to content

Commit c0342c2

Browse files
committed
Update API Docs
1 parent ecb41f6 commit c0342c2

File tree

199 files changed

+2861
-2160
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

199 files changed

+2861
-2160
lines changed

API-Reference/Flow.Launcher.Plugin.SharedCommands.md

Lines changed: 0 additions & 9 deletions
This file was deleted.
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# FilesFolders.CopyAll method
2+
3+
Copies the folder and all of its files and folders including subfolders to the target location
4+
5+
```csharp
6+
public static void CopyAll(this string sourcePath, string targetPath)
7+
```
8+
9+
| parameter | description |
10+
| --- | --- |
11+
| sourcePath | |
12+
| targetPath | |
13+
14+
## See Also
15+
16+
* class [FilesFolders](../FilesFolders.md)
17+
* namespace [Flow.Launcher.Plugin.SharedCommands](../../Flow.Launcher.Plugin.md)
18+
19+
<!-- DO NOT EDIT: generated by xmldocmd for flow.launcher.plugin.dll -->
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# FilesFolders.FileExists method
2+
3+
```csharp
4+
public static bool FileExists(this string filePath)
5+
```
6+
7+
## See Also
8+
9+
* class [FilesFolders](../FilesFolders.md)
10+
* namespace [Flow.Launcher.Plugin.SharedCommands](../../Flow.Launcher.Plugin.md)
11+
12+
<!-- DO NOT EDIT: generated by xmldocmd for flow.launcher.plugin.dll -->
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# FilesFolders.GetPreviousExistingDirectory method
2+
3+
Gets the previous level directory from a path string. Checks that previous level directory exists and returns it as a path string, or empty string if doesn't exist
4+
5+
```csharp
6+
public static string GetPreviousExistingDirectory(Func<string, bool> locationExists, string path)
7+
```
8+
9+
## See Also
10+
11+
* class [FilesFolders](../FilesFolders.md)
12+
* namespace [Flow.Launcher.Plugin.SharedCommands](../../Flow.Launcher.Plugin.md)
13+
14+
<!-- DO NOT EDIT: generated by xmldocmd for flow.launcher.plugin.dll -->
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# FilesFolders.IsLocationPathString method
2+
3+
This checks whether a given string is a directory path or network location string. It does not check if location actually exists.
4+
5+
```csharp
6+
public static bool IsLocationPathString(this string querySearchString)
7+
```
8+
9+
## See Also
10+
11+
* class [FilesFolders](../FilesFolders.md)
12+
* namespace [Flow.Launcher.Plugin.SharedCommands](../../Flow.Launcher.Plugin.md)
13+
14+
<!-- DO NOT EDIT: generated by xmldocmd for flow.launcher.plugin.dll -->
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# FilesFolders.LocationExists method
2+
3+
```csharp
4+
public static bool LocationExists(this string path)
5+
```
6+
7+
## See Also
8+
9+
* class [FilesFolders](../FilesFolders.md)
10+
* namespace [Flow.Launcher.Plugin.SharedCommands](../../Flow.Launcher.Plugin.md)
11+
12+
<!-- DO NOT EDIT: generated by xmldocmd for flow.launcher.plugin.dll -->
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# FilesFolders.OpenContainingFolder method
2+
3+
```csharp
4+
public static void OpenContainingFolder(string path)
5+
```
6+
7+
## See Also
8+
9+
* class [FilesFolders](../FilesFolders.md)
10+
* namespace [Flow.Launcher.Plugin.SharedCommands](../../Flow.Launcher.Plugin.md)
11+
12+
<!-- DO NOT EDIT: generated by xmldocmd for flow.launcher.plugin.dll -->
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# FilesFolders.OpenPath method
2+
3+
```csharp
4+
public static void OpenPath(string fileOrFolderPath)
5+
```
6+
7+
## See Also
8+
9+
* class [FilesFolders](../FilesFolders.md)
10+
* namespace [Flow.Launcher.Plugin.SharedCommands](../../Flow.Launcher.Plugin.md)
11+
12+
<!-- DO NOT EDIT: generated by xmldocmd for flow.launcher.plugin.dll -->
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# FilesFolders.RemoveFolderIfExists method
2+
3+
```csharp
4+
public static void RemoveFolderIfExists(this string path)
5+
```
6+
7+
## See Also
8+
9+
* class [FilesFolders](../FilesFolders.md)
10+
* namespace [Flow.Launcher.Plugin.SharedCommands](../../Flow.Launcher.Plugin.md)
11+
12+
<!-- DO NOT EDIT: generated by xmldocmd for flow.launcher.plugin.dll -->
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# FilesFolders.ReturnPreviousDirectoryIfIncompleteString method
2+
3+
Returns the previous level directory if path incomplete (does not end with '\'). Does not check if previous level directory exists. Returns passed in string if is complete path
4+
5+
```csharp
6+
public static string ReturnPreviousDirectoryIfIncompleteString(string path)
7+
```
8+
9+
## See Also
10+
11+
* class [FilesFolders](../FilesFolders.md)
12+
* namespace [Flow.Launcher.Plugin.SharedCommands](../../Flow.Launcher.Plugin.md)
13+
14+
<!-- DO NOT EDIT: generated by xmldocmd for flow.launcher.plugin.dll -->

0 commit comments

Comments
 (0)