#BUGFIX by stefan
authorStefan Vogel <sv@exept.de>
Wed, 20 Dec 2017 21:49:47 +0100
changeset 22396 317c7c679a76
parent 22395 6e3d466ccef0
child 22397 38c1f93a3dd1
#BUGFIX by stefan class: Filename changed: #openExplorer works in Linux, too
Filename.st
--- a/Filename.st	Wed Dec 20 09:33:38 2017 +0100
+++ b/Filename.st	Wed Dec 20 21:49:47 2017 +0100
@@ -4534,15 +4534,16 @@
     "open a file-explorer on the directory represented by the receiver.
      On non-windows systems, an error is raised"
 
-    OperatingSystem isMSWINDOWSlike ifFalse:[
-	self warn:'sorry - this operation is only available under windows'.
-    ].
-
     OperatingSystem
-	openApplicationForDocument:self pathName
-	operation:#explore.
+        openApplicationForDocument:self pathName
+        operation:#explore.
+
+    "
+       Filename currentDirectory openExplorer
+    "
 
     "Created: / 21-07-2012 / 12:28:18 / cg"
+    "Modified: / 20-12-2017 / 21:34:41 / stefan"
 !
 
 openFinder