unioffice/common/tempstorage/tempstorage.go
2023-04-15 17:27:31 +00:00

34 lines
1.6 KiB
Go

//
// Copyright 2020 FoxyUtils ehf. All rights reserved.
//
// This is a commercial product and requires a license to operate.
// A trial license can be obtained at https://unidoc.io
//
// DO NOT EDIT: generated by unitwist Go source code obfuscator.
//
// Use of this source code is governed by the UniDoc End User License Agreement
// terms that can be accessed at https://unidoc.io/eula/
package tempstorage ;import _a "io";
// TempFile creates new empty file in the storage and returns it.
func TempFile (dir ,pattern string )(File ,error ){return _b .TempFile (dir ,pattern )};
// TempDir creates a name for a new temp directory using a pattern argument.
func TempDir (pattern string )(string ,error ){return _b .TempDir (pattern )};type storage interface{Open (_f string )(File ,error );TempFile (_g ,_d string )(File ,error );TempDir (_ea string )(string ,error );RemoveAll (_ab string )error ;Add (_fa string )error ;};
// Add reads a file from a disk and adds it to the storage.
func Add (path string )error {return _b .Add (path )};
// SetAsStorage changes temporary storage to newStorage.
func SetAsStorage (newStorage storage ){_b =newStorage };
// File is a representation of a storage file
// with Read, Write, Close and Name methods identical to os.File.
type File interface{_a .Reader ;_a .ReaderAt ;_a .Writer ;_a .Closer ;Name ()string ;};
// RemoveAll removes all files according to the dir argument prefix.
func RemoveAll (dir string )error {return _b .RemoveAll (dir )};var _b storage ;
// Open returns tempstorage File object by name.
func Open (path string )(File ,error ){return _b .Open (path )};