Sicherung mit Duplicati
Filter von Duplicati mit Kommandozeile prüfen: c:\Duplicati\Duplicati.CommandLine.exe test-filters R:\ --include=R:\*.docx --exclude=R:\* siehe auch Restic
Filter von Duplicati mit Kommandozeile prüfen: c:\Duplicati\Duplicati.CommandLine.exe test-filters R:\ --include=R:\*.docx --exclude=R:\* siehe auch Restic
Dim gPID Function BPM_OnCreate(DCRoot) gPID = InputBox("Welche Prozess-ID?", "Frage", "XX") End Function Function BPM_OnProcessBatch(DCBatch) 'eine ID setzen iDocCount = DCBatch.GetDocumentCount For i = 0 To iDocCount - 1 Set DCTempDocument…
Dim g_DirToHoldFiles Function DPM_OnCreate(DCRoot) g_DirToHoldFiles = "E:\temp\referenz" End Function Function DPM_OnProcessDocument(DCDocument) SaveTifAndAddx(DCDocument) End Function Function SaveTifAndAddx(DCDocument) 'FileSystem-Objekt öffnen set fso = CreateObject("Scripting.FileSystemObject") 'Verzeichnis If not fso.FolderExists(g_DirToHoldFiles) Then f = fso.CreateFolder(g_DirToHoldFiles)…
Function DPM_OnOpenBatch(DCBatch) nDocument = DCBatch.GetDocumentCount For i = 0 To nDocument - 1 Set DCDoc = DCBatch.GetDocument(i) nAttribute = DCDoc.GetAttributecount For a = 0 To nAttribute - 1 Attribute =…
var xhr = new XMLHttpRequest(); xhr.open("POST", "/service", true); xhr.setRequestHeader("Content-type","application/x-www-form-urlencoded"); var a = document.getElementById("post_param_a").value; var b = document.getElementById("post_param_b").value; var params = "a=" + a + "&b=" + b; xhr.send(params); xhr.onload =…
in "pom.xml" die Ressource bekannt machen src/main/resources true **/version.txt src/main/resources false **/version.txt in "src/main/resources" die Datei "version.txt" mit folgendem Inhalt anlegen ${project.version} im Programmcode (nach dem Bauen) auf Information zugreifen…
Java-Projekte in VS Code, die mit Maven verwaltet werden, referenzieren eine installierte lokale Bibliothek. mvn install:install-file ^ -Dfile=lib/bobxyz-1.0.9.jar ^ -DgroupId=bob-team.de ^ -DartifactId=xyz ^ -Dversion=1.0.9 ^ -Dpackaging=jar ^ -DgeneratePom=true In Bat-Datei…
Single-Responsibility-Prinzip eine Klasse nur eine Verantwortlichkeit; viele kleine Klassen sind besser als wenige große Open-Closed-Prinzip offen für Erweiterungen, aber geschlossen gegenüber Modifikationen; über Vererbung und Einsatz von Interfaces zu erreichen…