Sort Score
Result 10 results
Languages All
Labels All
Results 61 - 70 of 15,586 for

file

(0.55 sec)
  1. Load file from local disk | GroupDocs

    This article explains how to load PDF, Word, Excel, PowerPoint documents from local disk when using GroupDocs.Parser for Python via .NET....Loading / Load file from local disk Load file from local disk...this page When the document file is located on the local disk...

    docs.groupdocs.com/parser/python-net/load-file-...
  2. Get supported file types | GroupDocs

    This article explains how to obtain supported File formats list when merge PDF, Word(DOC, DOCX), Excel(XLS, XLSX), PowerPoint(PPT, PPTX) documents with GroupDocs.Merger within your Java applications..../ Get supported file types Get supported file types Leave feedback...demonstrates how to get supported file formats list. List < FileType...

    docs.groupdocs.com/merger/java/get-supported-fi...
  3. Load Password-Protected File | GroupDocs

    Learn how to load and convert password-protected documents using the GroupDocs.Conversion for Python via .NET API, enabling seamless handling of secured Files....Password-Protected File Load Password-Protected File Leave feedback...below: load_password_protected_file.py from groupdocs.conversion...

    docs.groupdocs.com/conversion/python-net/develo...
  4. Get supported file formats | GroupDocs

    The getSupportedFileTypes method of the FileType class is used to obtain a list of supported File types. An example of obtaining a list of supported File types is presented below. Iterable<FileType> supportedFileTypes = FileType.getSupportedFileTypes(); Iterator iterator = supportedFileTypes.iterator(); while (iterator.hasNext()) { FileType FileType = (FileType)iterator.next(); System.out.println(FileType.getExtension() + " - " + FileType.getDescription()); } More resources Advanced usage topics To learn more about library features and get familiar how to manage metadata and more, please refer to theadvanced usage section....Get supported file formats Get supported file formats Leave feedback...to obtain a list of supported file types. An example of obtaining...

    docs.groupdocs.com/metadata/java/get-supported-...
  5. Save overwriting original file | GroupDocs

    This article demonstrates that how to save the redacted document, replacing an original File...overwriting original file Save overwriting original file Leave feedback...document, replacing an original file: C# using ( Redactor redactor...

    docs.groupdocs.com/redaction/net/save-overwriti...
  6. Load specific file formats | GroupDocs

    Learn how to load specific File formats manually using LoadOptions in GroupDocs.Parser for Python via .NET....Load specific file formats Load specific file formats Leave feedback...Create Parser object with the file path and LoadOptions Call extraction...

    docs.groupdocs.com/parser/python-net/load-speci...
  7. Save overwriting original file | GroupDocs

    The following example demonstrates how to save the redacted document, replacing an original File: // Make a copy of sample File Files.copy(new File("Sample.docx").toPath(), new File("OverwrittenSample.docx").toPath(), StandardCopyOption.REPLACE_EXISTING); // Apply redaction final Redactor redactor = new Redactor("OverwrittenSample.docx"); try { RedactorChangeLog result = redactor.apply(new ExactPhraseRedaction("John Doe", new ReplacementOptions(java.awt.Color.RED))); if (result.getStatus() != RedactionStatus.Failed) { SaveOptions options = new SaveOptions(); options.setAddSuffix(false); options.setRasterizeToPDF(false); // Save the document in original format overwriting original File redactor.save(options); } } finally { redactor....overwriting original file Save overwriting original file Leave feedback...original file: // Make a copy of sample file Files . copy ( new...

    docs.groupdocs.com/redaction/java/save-overwrit...
  8. Get supported file formats | GroupDocs

    This article shows that how to get the list of all supported File formats of GroupDocs.Redaction by using C#....Get supported file formats Get supported file formats Leave feedback...get the list of all supported file formats by these steps: Call...

    docs.groupdocs.com/redaction/net/get-supported-...
  9. Text file encoding detection | GroupDocs

    This article explains that how to detect encoding of a text File automatically....Indexing / Text file encoding detection Text file encoding detection...automatically detect encoding of a text file, the property defined in the...

    docs.groupdocs.com/search/net/text-file-encodin...
  10. Get supported file formats | GroupDocs

    This article explains how to get the list of all supported File formats....Get supported file formats Get supported file formats Leave feedback...demonstrates how to get a supported file formats list. BasicUsage.GetSupportedFileForm...

    docs.groupdocs.com/watermark/net/get-supported-...