Modify ↓
Opened on Nov 6, 2009 at 10:21:32 PM
Closed on Nov 9, 2009 at 11:51:29 PM
Last modified on Nov 11, 2009 at 1:41:33 PM
#1286 closed Bug (No Bug)
FileGetShortName does not expand . or .. directories
| Reported by: | flyingboz | Owned by: | |
|---|---|---|---|
| Milestone: | Component: | AutoIt | |
| Version: | 3.3.1.4 | Severity: | None |
| Keywords: | FileGetShortName Current Directory Parent Directory | Cc: |
Description
ConsoleWrite(FileGetShortName('.'))
ConsoleWrite(FileGetShortName('..'))
Current behavior:
The above commands do not return the shortname of the directories in question; rather they return the argument itself.
Desired behavior:
Return the absolute path's shortname.
Attachments (0)
Change History (2)
comment:1 by , on Nov 9, 2009 at 11:51:29 PM
| Resolution: | → No Bug |
|---|---|
| Status: | new → closed |
Note:
See TracTickets
for help on using tickets.

#include <File.au3> ConsoleWrite(FileGetShortName(_PathFull(".")) & @CRLF) ConsoleWrite(FileGetShortName(_PathFull("..")) & @CRLF)No bug, not a feature we will add.