Uses of Class
ch.ivyteam.ivy.scripting.objects.File
-
Packages that use File Package Description ch.ivyteam.ivy.htmldialog ch.ivyteam.ivy.scripting.objects ch.ivyteam.ivy.workflow.document -
-
Uses of File in ch.ivyteam.ivy.htmldialog
Methods in ch.ivyteam.ivy.htmldialog with parameters of type File Modifier and Type Method Description StringIHtmlDialogContext. fileref(File file)Returns the url to the specified file for download (empty string if file isnull). -
Uses of File in ch.ivyteam.ivy.scripting.objects
Methods in ch.ivyteam.ivy.scripting.objects that return File Modifier and Type Method Description FileFile. clone()Creates a clone.FileFile. deepClone()Creates a clone; the same as clone().FileFile. getParentFile()Returns the parent file of this file.FileFile. makePersistent(boolean overwrite)Makes a temporary file persistent.FileFile. move(File newFile, boolean override)Moves this file to the file in the argument.FileFile. move(String newPath, boolean override)Moves this file to the file specified by the path in the argument.FileFile. rename(String newName, boolean override)Renames a file in the same directory.Methods in ch.ivyteam.ivy.scripting.objects that return types with arguments of type File Modifier and Type Method Description List<File>File. listFiles()Returns a list of ivy files denoting the files in the directory denoted by this ivy file.Methods in ch.ivyteam.ivy.scripting.objects with parameters of type File Modifier and Type Method Description voidFile. copy(File newFile, boolean override, boolean preserveFileDate)Copies this file to a new location.FileFile. move(File newFile, boolean override)Moves this file to the file in the argument.Constructors in ch.ivyteam.ivy.scripting.objects with parameters of type File Constructor Description Xml(File file)Constructs a new Xml object by parsing a file. -
Uses of File in ch.ivyteam.ivy.workflow.document
Methods in ch.ivyteam.ivy.workflow.document that return File Modifier and Type Method Description FileIDocumentContentReader. asIvyFile()Example:
File file = document.read().asIvyFile();
String content = file.read();Methods in ch.ivyteam.ivy.workflow.document with parameters of type File Modifier and Type Method Description IDocumentIDocumentContentWriter. withContentFrom(File content)Writes the content of the given file to the document
-