101 lines
8.3 KiB
INI
101 lines
8.3 KiB
INI
####################################################################################################
|
|
# Digital Data Configuration File (Template Date: 30.07.2016) #
|
|
# UTF-8 Coding required! #
|
|
# incl. FailSafe functions that are active when information is missing. #
|
|
####################################################################################################
|
|
|
|
#==================================================================================================#
|
|
########################################## General Setup ###########################################
|
|
#==================================================================================================#
|
|
|
|
####################################################################################################
|
|
# Path in which the log files will be stored. #
|
|
# Example: E:\LogFiles\<ScriptName> #
|
|
# FailSafe Setting is: <ScriptPath>\Logs #
|
|
####################################################################################################
|
|
LogPath =
|
|
|
|
####################################################################################################
|
|
# Numerical value how long (in days) log files will be kept. ValidateRange is 0 - 1000 #
|
|
# Setting the Value to 0 disables this Function. #
|
|
# FailSafe Setting is: 60 #
|
|
####################################################################################################
|
|
LogFileKeepTime = 30
|
|
|
|
####################################################################################################
|
|
# Special characters which is used to separate file versions. #
|
|
# Example: File_4711_1606~2.pdf #
|
|
# FailSafe Setting is: ~ #
|
|
####################################################################################################
|
|
VersionSeperator = ~
|
|
|
|
####################################################################################################
|
|
# Numerical value how long (in Minutes) a File has to be there, before processing it. #
|
|
# FailSafe Setting is: 5 #
|
|
####################################################################################################
|
|
FileDelayAge = 1
|
|
|
|
#==================================================================================================#
|
|
########################################### helper apps ############################################
|
|
#==================================================================================================#
|
|
|
|
####################################################################################################
|
|
# Path in which the ZUGPFerd Converter Exe is stored. #
|
|
# Example: D:\ProgramFiles\luratech_zugferd_csdk_1.05_win64\pdf_zugferd_test.exe #
|
|
# FailSafe Setting is: <ScriptPath>\pdf_zugferd_test.exe #
|
|
####################################################################################################
|
|
ZUGPFeRDConverterEXE =
|
|
#ZUGPFeRDConverterEXE = E:\KammM\luratech_zugferd_csdk_1.05_win64\pdf_zugferd_test.exe
|
|
|
|
#==================================================================================================#
|
|
########################################## Profile Setup ###########################################
|
|
#==================================================================================================#
|
|
|
|
####################################################################################################
|
|
# Define Profiles in this config file for the executing Script. #
|
|
# Syntax: #
|
|
# Profile = <SourcePath>;<FileType>;<ReclusiveSwitch>;<ErrorPath>;<PDFTargetPath>;<XMLTargetPath> #
|
|
# Example: #
|
|
# Profile = E:\SourcePath ; *.pdf ; true ; E:\ErrorPath ; E:\PDFOutput ; E:\XMLOutput #
|
|
#--------------------------------------------------------------------------------------------------#
|
|
# First Parameter: <SourcePath> #
|
|
# Give the Path to the files you want to process. #
|
|
# Example: E:\SourcePath #
|
|
#--------------------------------------------------------------------------------------------------#
|
|
# Second Parameter: <FileType> #
|
|
# Set the File extensions you want to search for, in the specified SourcePath. #
|
|
# Example: *.* --This means every File Extension. #
|
|
# Example: *.pdf --This means only Files with the Extension "pdf". #
|
|
#--------------------------------------------------------------------------------------------------#
|
|
# Third Parameter: <ReclusiveSwitch> #
|
|
# Determ if the SourcePath should be searched only in the main dir or even in every subfolder. #
|
|
# Example: True --Search in every Subfolder under the specified Sourcefolder. #
|
|
# Example: False --Search only in the specified Sourcefolder. #
|
|
#--------------------------------------------------------------------------------------------------#
|
|
# Fourth Parameter: <ErrorPath> #
|
|
# PDF Files which do not include a valid XML Structure for the ZUGFeRD Informations, #
|
|
# will be moved to this Directory. #
|
|
# Example: E:\ErrorPath #
|
|
#--------------------------------------------------------------------------------------------------#
|
|
# Fifth Parameter: <PDFTargetPath> #
|
|
# PDF Files which are successfully processed (ZUGFeRD Informations extraction zu a XML File), #
|
|
# will be moved to this Directory. #
|
|
# Example: E:\PDFOutput #
|
|
#--------------------------------------------------------------------------------------------------#
|
|
# Sixth Parameter: <XMLTargetPath> #
|
|
# Determ where the extracted XMLs should bei saved to. #
|
|
# Example: E:\XMLOutput #
|
|
#--------------------------------------------------------------------------------------------------#
|
|
# Argument call: #
|
|
# If you need to run the Script with dynamic Values, you can do so, by calling it with arguments. #
|
|
# Even the Special and Optional Parameters are available in this case. #
|
|
# Example: #
|
|
# This Function is currently not implement! #
|
|
####################################################################################################
|
|
Profile = E:\SchreiberM\Tests\ZugFerdSDK\Input ; *.pdf ; true ; E:\SchreiberM\Tests\ZugFerdSDK\error ; E:\SchreiberM\Tests\ZugFerdSDK\output ; E:\SchreiberM\Tests\ZugFerdSDK\output
|
|
#Profile = E:\KammM\pdftest\input ; *.pdf ; true ; E:\KammM\pdftest\error ; E:\KammM\pdftest\output ; E:\KammM\pdftest\output
|
|
|
|
|
|
|
|
|