× Use Easybots Studio to download and use the bots from this app

App

Files & Processes

Free

Description

App that enables you to work with the files and the processes on your PC: - Read, Write, Get files.. - Start processes on your PC and get the info from them.. - Monitor changes in directories (new files, changed files, new directories, changed directories, etc..)

Author

Easybots Devs

Version

1.0.30.4

Available bots in this app

DirectoryBot
Actions
GetDrives

Inputs

Returns

  • return : String[]
GetDirectories

Inputs

  • dirFullPath : String
  • returnFullPath : Boolean

Returns

  • return : String[]
GetFiles

Inputs

  • dirFullPath : String
  • returnFullPath : Boolean

Returns

  • return : String[]
GetFilesAsSerializableFiles

Inputs

  • dirFullPath : String

Returns

  • return : SerializableFile[]
FileBot
Actions
Exists

Inputs

  • fileFullPath : String

Returns

  • exists : Boolean
CopyFile

Inputs

  • sourceFileFullPath : String
  • destinationFileFullPath : String
  • overwrite : Boolean

Returns

  • destinationFileFullPath : String
DeleteFile

Inputs

  • fileFullPath : String

Returns

  • isDeleted : Boolean
ZipFolder

Inputs

  • folderFullPath : String
  • zipFileFullPath : String

Returns

ReadFile

Inputs

  • fileFullPath : String

Returns

  • return : String
GetFile

Inputs

  • fileFullPath : String

Returns

  • DataModel : SerializableFile
    • FileNameField : String
    • FileBytesField : Byte[]
CreateFileFromBytes

Inputs

  • fileBytes : Byte[]
  • fileName : String

Returns

  • DataModel : SerializableFile
    • FileNameField : String
    • FileBytesField : Byte[]
Save

Inputs

  • file : SerializableFile
  • directory : String
  • overwriteExisting : Boolean

Returns

  • savedFileFullPath : String
  • savedFileName : String
AppendLineWithCsvValues

Inputs

  • fileFullPath : String
  • value1 : String
  • value2 : String
  • value3 : String
  • value4 : String
  • value5 : String
  • value6 : String
  • value7 : String
  • value8 : String
  • value9 : String

Returns

WriteText

Inputs

  • fileFullPath : String
  • text : String

Returns

ClearText

Inputs

  • fileFullPath : String

Returns

FileSystemMonitorBot
Triggers
Created

Returns

  • fullName : String
  • name : String
  • isFile : Boolean
Updated

Returns

  • fullName : String
  • name : String
  • isFile : Boolean
Deleted

Returns

  • fullName : String
  • name : String
Renamed

Returns

  • fullName : String
  • name : String
  • oldFullName : String
  • oldName : String
  • isFile : Boolean
PathBot
Actions
Combine

Inputs

  • path1 : String
  • path2 : String
  • path3 : String
  • path4 : String
  • path5 : String

Returns

  • return : String
GetParentDir

Inputs

  • path : String
  • returnFullPath : Boolean

Returns

  • return : String
IsDirectory

Inputs

  • fullPath : String

Returns

  • return : Boolean
ProcessBot
Actions
RunProcess

Inputs

  • fileName : String
  • args : String
  • WaitForExit : Boolean
  • working dir : String

Returns

  • ExitCode : Int32
RunProcessAndGetOutputText

Inputs

  • fileName : String
  • args : String
  • working dir : String

Returns

  • ExitCode : Int32
  • Output : String
  • Error : String