Autor Beitrag
MDX
ontopic starontopic starontopic starontopic starontopic starontopic starofftopic starofftopic star
Beiträge: 595
Erhaltene Danke: 4

Windows 8.1, Linux Debian 8, Android Lollipop
Delphi, PHP, Java (Android)
BeitragVerfasst: Sa 14.06.08 16:23 
Hallo, wie kann man VERBIETEN das man eine Datei mit Leerzeichen speichert, also statt:
Zitat:
C:\HALLO\VERZEICHNIS\UNTERVERZEICHNIS\das ist eine datei.abc
in:
Zitat:
C:\HALLO\VERZEICHNIS\UNTERVERZEICHNIS\das-ist-eine-datei.abc
oder:
Zitat:
C:\HALLO\VERZEICHNIS\UNTERVERZEICHNIS\dasisteinedatei.abc


Moderiert von user profile iconNarses: überflüssige Leerzeilen entfernt
Christian S.
ontopic starontopic starontopic starontopic starontopic starontopic starhalf ontopic starofftopic star
Beiträge: 20451
Erhaltene Danke: 2264

Win 10
C# (VS 2019)
BeitragVerfasst: Sa 14.06.08 16:38 
Nachdem der Savedialog fertig ist, in dem entsprechen String alle Leerzeichen durch was anderes ersetzen.

Aber warum willst Du das? Leerzeichen in Dateinamen sind inzsichen ein Standardfeature.

_________________
Zwei Worte werden Dir im Leben viele Türen öffnen - "ziehen" und "drücken".
MDX Threadstarter
ontopic starontopic starontopic starontopic starontopic starontopic starofftopic starofftopic star
Beiträge: 595
Erhaltene Danke: 4

Windows 8.1, Linux Debian 8, Android Lollipop
Delphi, PHP, Java (Android)
BeitragVerfasst: Sa 14.06.08 16:42 
Da gibt es nurnein Problem:

FFMPEG

DAMIT KANN MAN KEINE Dateien mit Leerzeichen reinmachen....

Also dann ins OnClose Ereigniss???
Christian S.
ontopic starontopic starontopic starontopic starontopic starontopic starhalf ontopic starofftopic star
Beiträge: 20451
Erhaltene Danke: 2264

Win 10
C# (VS 2019)
BeitragVerfasst: Sa 14.06.08 16:47 
Deine Shift-Taste klemmt :roll:

OnClose: Ich dachte eigentlich an sowas:

ausblenden Delphi-Quelltext
1:
2:
3:
4:
5:
6:
7:
8:
var
  filename : String;
begin
  if SaveDialog1.Execute then
  begin
    filename := StringReplace(..)

  end;

_________________
Zwei Worte werden Dir im Leben viele Türen öffnen - "ziehen" und "drücken".
Luckie
Ehemaliges Mitglied
Erhaltene Danke: 1



BeitragVerfasst: Sa 14.06.08 20:05 
Lösung siehe in einem anderen bekannten Delphi-Forum, dn Link habe ich gerade leider nicht zur Hand.
MDX Threadstarter
ontopic starontopic starontopic starontopic starontopic starontopic starofftopic starofftopic star
Beiträge: 595
Erhaltene Danke: 4

Windows 8.1, Linux Debian 8, Android Lollipop
Delphi, PHP, Java (Android)
BeitragVerfasst: Sa 04.10.08 13:10 
Geht mit " bei FFMPEG also Geklärt