Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(825)

Side by Side Diff: pkg/pathos/README.md

Issue 12316056: Move pkg/path to pkg/pathos. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « pkg/path/test/path_windows_test.dart ('k') | pkg/pathos/lib/path.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 A comprehensive, cross-platform path manipulation library for Dart. 1 A comprehensive, cross-platform path manipulation library for Dart.
2 2
3 The pathos library provides common operations for manipulating file paths: 3 The pathos library provides common operations for manipulating file paths:
4 joining, splitting, normalizing, etc. 4 joining, splitting, normalizing, etc.
5 5
6 We've tried very hard to make this library do the "right" thing on whatever 6 We've tried very hard to make this library do the "right" thing on whatever
7 platform you run it on. When you use the top-level functions, it will assume 7 platform you run it on. When you use the top-level functions, it will assume
8 the host OS's path style and work with that. If you want to specifically work 8 the host OS's path style and work with that. If you want to specifically work
9 with paths of a specific style, you can construct a `path.Builder` for that 9 with paths of a specific style, you can construct a `path.Builder` for that
10 style. 10 style.
(...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after
303 * It can accurately tell if a path is absolute based on drive-letters or UNC 303 * It can accurately tell if a path is absolute based on drive-letters or UNC
304 prefix. 304 prefix.
305 305
306 * It understands that "/foo" is not an absolute path on Windows. 306 * It understands that "/foo" is not an absolute path on Windows.
307 307
308 * It knows that "C:\foo\one.txt" and "c:/foo\two.txt" are two files in the 308 * It knows that "C:\foo\one.txt" and "c:/foo\two.txt" are two files in the
309 same directory. 309 same directory.
310 310
311 If you find a problem, surprise or something that's unclear, please don't 311 If you find a problem, surprise or something that's unclear, please don't
312 hesitate to [file a bug](http://dartbug.com/new) and let us know. 312 hesitate to [file a bug](http://dartbug.com/new) and let us know.
OLDNEW
« no previous file with comments | « pkg/path/test/path_windows_test.dart ('k') | pkg/pathos/lib/path.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698