Wenn mann viele Bilder in Unterordnern verteilt hat und die alle mal in nur einem Verzeichnis 'versammeln' möchte, kann man mit Windows und Drag and Drop ziemlich beschäftigt sein.
Unter Linux ist es kein Problem über XTerm und co die Files herumzuschieben und zu kopieren. Unter Windows braucht man dann mal das DOS Fenster (Start -> Ausführen -> cmd).
Meine DOS Erfahrungen liegen fast 20 Jahre zurück.
Deshalb hat Google mir mal wieder geholfen, da ich nur eine englische Antwort gefunden habe, und damit ich sie wiederfinde hier nochmal in meinem Blog auf deutsch.
Also der DOS Befehl zum kopieren aller Dateien aus den Unterordnern eines Verzeichnisses:
als Beispiel mal hier aus dem Verzeichnis c:\split in das Verzeichnis c:\Neuer Ordner
cd /d "c:\split"
for /r %d in (*) do copy "%d" "c:\Neuer Ordner"
Posts mit dem Label copy werden angezeigt. Alle Posts anzeigen
Posts mit dem Label copy werden angezeigt. Alle Posts anzeigen
Mittwoch, 4. September 2013
Dienstag, 19. Juni 2012
Mysql how to copy/import a table from another Database
Mysql:
Kopieren/Importieren einer Tabelle aus einer DB in eine andere...1. Drop table in target db if it already exists
drop table 'targetdb'.'tablename';
2. Create the table
create table 'targetdb'.'tablename' select * from 'sourcedb'.'tablename';
Howto use multiple line html string in append or something like that:
Howto use multiple line html string in append or something like that:
1. define variable:
2. use variable
1. define variable:
var tablefooter = '<tfoot><tr>'
tablefooter += '<td><input name="tfoot input" value="Suche" /></td>'
tablefooter += '<td><input name="tfoot input" value="Suche" /></td>'
tablefooter += '<td><input name="tfoot input" value="Suche" /></td>'
tablefooter +=' </tr></tfoot>';
2. use variable
oTable.append(tablefooter);
Abonnieren
Posts (Atom)