Changeset 272:463d461e6e78
- Timestamp:
- 08/01/08 01:16:10
(5 months ago)
- Author:
- Frank Benoit <benoit@tionex.de>
- branch:
- default
- Message:
Fix path handling, thanks yidabu for reporting.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r264 |
r272 |
|
| 8 | 8 | static import tango.io.model.IFile; |
|---|
| 9 | 9 | static import tango.io.FilePath; |
|---|
| | 10 | static import tango.io.Path; |
|---|
| 10 | 11 | static import tango.io.FileSystem; |
|---|
| 11 | 12 | |
|---|
| … | … | |
| 27 | 28 | |
|---|
| 28 | 29 | public this ( String pathname ){ |
|---|
| 29 | | mFilePath = new tango.io.FilePath.FilePath( pathname ); |
|---|
| | 30 | mFilePath = new tango.io.FilePath.FilePath( tango.io.Path.standard( pathname )); |
|---|
| 30 | 31 | } |
|---|
| 31 | 32 | |
|---|
| r268 |
r272 |
|
| 35 | 35 | import tango.stdc.stringz : toString16z; |
|---|
| 36 | 36 | import tango.text.convert.Utf : toString16; |
|---|
| 37 | | import tango.io.FilePath; |
|---|
| 38 | 37 | static import tango.io.TempFile; |
|---|
| 39 | 38 | import tango.io.File; |
|---|