-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathNM_FileIO.ipf
More file actions
3846 lines (2614 loc) · 94.2 KB
/
NM_FileIO.ipf
File metadata and controls
3846 lines (2614 loc) · 94.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#pragma rtGlobals=3 // Use modern global access method and strict wave access.
#pragma hide = 1
//****************************************************************
//****************************************************************
//
// NeuroMatic: data aquisition, analyses and simulation software that runs with the Igor Pro environment
// Copyright (C) 2024 The Silver Lab, UCL
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
//
// Contact [email protected]
// www.NeuroMatic.ThinkRandom.com
//
//****************************************************************
//****************************************************************
//
// Functions for opening / saving binary files and waves to disk
//
//****************************************************************
//****************************************************************
StrConstant NMVariablesFileName = "variables"
StrConstant NMWaveNotesFileName = "wavenotes"
StrConstant NMImageTypeList = "any;bmp;gif;jpeg;photoshop;pict;png;rpng;sgi;sunraster;targa;tiff;"
//StrConstant NMFileNameStrReplace = "ROI-,ROI;_POI_Dwell-4.0us,;_ChA,_A;_ChB,_B;_Trial-,;"
//****************************************************************
//****************************************************************
//****************************************************************
Function NMFileCall( select )
String select
strswitch( select )
case "Reload":
case "Reload Data":
case "Reload Waves":
NMDataReloadCall()
break
case "Import":
case "Import Data":
case "Load":
case "Load Waves":
case "Load From Files":
case "Load Waves From Files":
NMImportWavesCall()
break
case "Load From Folder":
case "Load Waves From Folder":
NMLoadAllWavesFromExtFolderCall()
break
case "Save":
case "Save Waves":
NMMainCall( "Save", "" )
break
case "Convert":
case "Convert nmb to pxp":
NMBin2IgorBinCall()
break
case "File Name Replace Strings":
NMFileNameReplaceStringListEdit()
break
endswitch
End // NMFileCall
//****************************************************************
//****************************************************************
//****************************************************************
//
// File utility functions
//
//****************************************************************
//****************************************************************
//****************************************************************
Function /S CheckNMPath() // find path to NeuroMatic Procedure folder
Variable icnt
String flist, fname, igor, path = ""
PathInfo NMPath
if ( V_flag == 1 )
return S_path
endif
PathInfo Igor
if ( V_flag == 0 )
return ""
endif
igor = S_path + "Igor Procedures:"
NewPath /O/Q NMPath, igor
flist = IndexedDir( NMPath, -1, 0 ) // look for NM folder
for ( icnt = 0; icnt < ItemsInList( flist ); icnt += 1 )
fname = StringFromList( icnt, flist )
if ( StrSearch( fname, "NeuroMatic", 0, 2 ) >= 0 )
path = igor + fname + ":" // found it
break
endif
endfor
if ( strlen( path ) == 0 ) // try to locate NM alias
flist = IndexedFile( NMPath, -1, "????" )
for ( icnt = 0; icnt < ItemsInList( flist ); icnt += 1 )
fname = StringFromList( icnt, flist )
if ( StrSearch( fname, "NeuroMatic", 0, 2 ) >= 0 )
//if ( IgorVersion() < 5 )
// NMDoAlert( "NM path cannot be determined. Try putting NM folder ( rather than alias ) in Igor Procedures folder." )
// break
//endif
GetFileFolderInfo /P=NMPath /Q/Z fname
if ( V_isAliasShortcut == 1 )
path = S_aliasPath
break
endif
endif
endfor
endif
NewPath /O/Q NMPath, path
PathInfo /S Igor
return path
End // CheckNMPath
//****************************************************************
//****************************************************************
//****************************************************************
Function KillNMPath()
PathInfo igor
if ( V_flag == 0 )
return -1
endif
NewPath /O/Q NMPath, S_path
KillPath /Z NMPath
End // KillNMPath
//****************************************************************
//****************************************************************
//****************************************************************
Function /S NMGetExternalFolderPath( message, defaultFolderPath )
String message
String defaultFolderPath
String folderPath = ""
if ( strlen( defaultFolderPath ) > 0 )
NewPath /Q/O/Z NMGetExtFolderPath, defaultFolderPath
if ( V_flag == 0 )
PathInfo /S NMGetExtFolderPath
else
KillPath /Z NMGetExtFolderPath
return ""
endif
endif
NewPath /Q/O/M=( message ) NMGetExtFolderPath
if ( V_flag == 0 )
PathInfo NMGetExtFolderPath
folderPath = S_path
else
KillPath /Z NMGetExtFolderPath
return ""
endif
KillPath /Z NMGetExtFolderPath
return folderPath
End // NMGetExternalFolderPath
//****************************************************************
//****************************************************************
//****************************************************************
Function /S NMFileOpenDialogue( path, ext )
String path // symbolic path name
String ext // file extension; ( "" ) for FileBinExt ( ? ) for any
Variable refnum, useDefaultPath = 0
String fList = "", pathStr = "", type = "????"
if ( strlen( ext ) == 0 )
ext = ".pxp"
endif
strswitch( ext )
case ".pxp":
type = "IGsU????"
break
case ".txt":
type = "TEXT"
break
endswitch
if ( strlen( path ) > 0 )
PathInfo /S $path
if ( V_Flag == 1 )
useDefaultPath = 0
endif
endif
if ( useDefaultPath )
pathStr = SpecialDirPath( "Documents", 0, 0, 0 )
NewPath NMDefaultPath, pathStr
PathInfo /S NMDefaultPath
endif
Open /R/D/M="Select one or more files to open"/MULT=1/T=type refnum // allows multiple selections
fList = ReplaceString( "\r", S_fileName, ";" ) // replace carriage returns with semi-colon
KillPath /Z NMDefaultPath
if ( ItemsInList( fList ) == 1 )
return StringFromList( 0, fList )
else
return fList // return file name list
endif
End // NMFileOpenDialogue
//****************************************************************
//****************************************************************
//****************************************************************
Function /S NMFileSaveDialogue( path, file, ext )
String path // symbolic path name
String file // for save dialogue
String ext // file extension
Variable refnum
String type = "????"
if ( strlen( ext ) > 0 )
file = FileExtCheck( file, ext, 1 ) // check extension exists
endif
strswitch( ext )
case ".pxp":
type = "IGsU????"
break
case ".txt":
type = "TEXT"
break
endswitch
PathInfo /S $path
Open /D/T=type refnum as NMChild( file )
return S_fileName // return file name
End // NMFileSaveDialogue
//****************************************************************
//****************************************************************
//****************************************************************
Function FileExists( file ) // determine if file exists
String file // file name
Variable refnum
if ( strlen( file ) == 0 )
return 0
endif
Open /Z=1/R/T="????" refnum as file
if ( refnum == 0 )
return 0
endif
Close refnum
return 1
End // FileExists
//****************************************************************
//****************************************************************
//****************************************************************
Function FileExistsAndNonZero( file ) // determine if file exists and contains bytes
String file // file name
Variable refnum
Variable ok = 1
if ( strlen( file ) == 0 )
return 0
endif
Open /Z=1/R/T="????" refnum as file
if ( refnum == 0 )
return 0
else
FStatus refNum
if ( V_logEOF == 0 )
ok = 0
NMHistory( "encountered empty file " + file )
endif
endif
Close refnum
return ok
End // FileExistsAndNonZero
//****************************************************************
//****************************************************************
//****************************************************************
Function /S FilePathCheck( path, file ) // combine path and file name
String path, file
PathInfo /S $path
if ( V_Flag == 1 )
return S_path + NMChild( file )
else
return file
endif
End // FilePathCheck
//****************************************************************
//****************************************************************
//****************************************************************
Function /S FileExtCheck( istring, ext, yes )
String istring // string value, such as file name "myfile.txt"
String ext // file extension such as ".txt"; ( ".*" ) for any ext
Variable yes // ( 0 ) has no extension ( 1 ) has extension
Variable icnt, ipnt = -1, sl = strlen( ext )
yes = BinaryCheck( yes )
for ( icnt = strlen( istring ) - 1; icnt >= 0; icnt -= 1 )
if ( StringMatch( istring[ icnt, icnt ], "." ) )
ipnt = icnt
endif
if ( StringMatch( istring[ icnt, icnt ], ":" ) )
break
endif
endfor
switch( yes )
case 0:
if ( StringMatch( ext, ".*" ) && ( ipnt >= 0 ) ) // any extension
istring = istring[ 0, ipnt - 1 ] // remove extension
elseif ( StringMatch( istring[ strlen( istring ) - sl, inf ], ext ) )
istring = istring[ 0, strlen( istring ) - sl - 1 ] // remove extension
endif
break
case 1:
if ( ipnt >= 0 )
istring = istring[ 0, ipnt-1 ] + ext // replace extension
else
istring += ext // add extension
endif
break
default:
return ""
endswitch
return istring
End // FileExtCheck
//****************************************************************
//****************************************************************
//****************************************************************
Function /S FileExtGet( fileName )
String fileName
String ext = ParseFilePath( 0, NMChild( fileName ), ".", 1, 0)
if ( strlen( ext ) > 0 )
return "." + ext
else
return ""
endif
End // FileExtGet
//****************************************************************
//****************************************************************
//****************************************************************
Function SeqNumFind( file ) // determine file sequence number, and its string index boundaries
String file // file name
Variable icnt, ibeg, iend, seqnum = Nan
for ( icnt = strlen( file ) - 1; icnt >= 0; icnt -= 1 )
if ( numtype( str2num( file[ icnt ] ) ) == 0 )
break // first appearance of number, from right
endif
endfor
iend = icnt
for ( icnt = iend; icnt >= 0; icnt -= 1 )
if ( numtype( str2num( file[ icnt ] ) ) == 2 )
break // last appearance of number, from right
endif
endfor
ibeg = icnt + 1
seqnum = str2num( file[ ibeg, iend ] )
Variable /G iSeqBgn = ibeg // store begin/end placement of seq number
Variable /G iSeqEnd = iend
return seqnum
End // SeqNumFind
//****************************************************************
//****************************************************************
//****************************************************************
Function /S SeqNumStr( file ) // get file sequence number as string
String file // file name
Variable icnt, ibeg, iend, seqnum = Nan
for ( icnt = strlen( file ) - 1; icnt >= 0; icnt -= 1 )
if ( numtype( str2num( file[ icnt, icnt ] ) ) == 0 )
break // first appearance of number, from right
endif
endfor
iend = icnt
for ( icnt = iend; icnt >= 0; icnt -= 1 )
if ( numtype( str2num( file[ icnt, icnt ] ) ) == 2 )
break // last appearance of number, from right
endif
endfor
ibeg = icnt + 1
return file[ ibeg, iend ]
End // SeqNumStr
//****************************************************************
//****************************************************************
//****************************************************************
Function /S SeqNumSet( file, ibeg, iend, seqnum ) // create new file name, with new sequence number
String file // original file name
Variable ibeg // begin string index of sequence number ( iSeqBgn )
Variable iend // end string index of sequence number ( iSeqEnd )
Variable seqnum // new sequence number
Variable icnt, jcnt
icnt = iend - ibeg + 1
jcnt = strlen( num2istr( seqnum ) )
if ( jcnt <= icnt )
ibeg = iend - jcnt + 1
file[ ibeg, iend ] = num2istr( seqnum )
else
file = "overflow" // new sequence number does not fit within allowed index boundaries
endif
return file
End // SeqNumSet
//****************************************************************
//****************************************************************
//****************************************************************
Function /S Seq2List( seqStr )
String seqStr
Variable icnt, jcnt, dash, from, to
String item, seqList = ""
if ( strlen( seqStr ) == 0 )
return ""
endif
seqStr = ReplaceString( ",", seqStr, ";" )
for ( icnt = 0; icnt < ItemsInList( seqStr ); icnt += 1 )
item = StringFromList( icnt, seqStr )
dash = strsearch( item, "-", 0 )
if ( dash < 0 )
seqList = AddListItem( item, seqList, ";", inf )
else
from = str2num( item[ 0, dash-1 ] )
to = str2num( item[ dash+1, inf ] )
if ( numtype( from * to ) > 0 )
continue
endif
for ( jcnt = from; jcnt <= to; jcnt += 1 )
seqList = AddListItem( num2istr( jcnt ), seqList, ";", inf )
endfor
endif
endfor
return seqList
End // Seq2List
//****************************************************************
//****************************************************************
//****************************************************************
Function NMFileTypeNum( fileTypeStr )
String fileTypeStr
strswitch( fileTypeStr )
case "NM":
case "NM Binary":
return 0
case "Igor":
case "Igor Binary":
return 1
case "Unpacked":
case "Unpacked Folder":
return 2
case "H5":
case "HDF5":
return 3
endswitch
return NaN
End // NMFileTypeNum
//****************************************************************
//****************************************************************
//****************************************************************
Function NMWaveFileTypeNum( fileTypeStr )
String fileTypeStr
strswitch( fileTypeStr )
case "Binary":
case "Igor Binary":
return 0
case "Text":
case "Igor Text":
return 1
case "General":
case "General Text":
return 2
case "Delimited":
case "Delimited Text":
return 3
endswitch
return NaN
End // NMWaveFileTypeNum
//****************************************************************
//****************************************************************
//****************************************************************
Function /S NMWaveFileTypeExt( fileType )
Variable fileType
switch( fileType )
case 0: // Igor Binary
return ".ibw"
case 1: // Igor Text
return ".itx"
case 2: // General Text
case 3: // Delimited Text
return ".txt"
endswitch
return ""
End // NMWaveFileTypeExt
//****************************************************************
//****************************************************************
//****************************************************************
Function NMFileNameReplaceStringListEdit()
Variable numItems, npnts, icnt, jcnt
String itemStr, replaceThisStr, withThisStr
String rName = "ReplaceThisStr"
String wName = "WithThisStr"
String tName = "NMFileNameReplaceStrings"
String title = "NM Config FileNameReplaceStringList - Add Strings and Kill Window"
String df = NMDF
String replaceStringList = NMStrGet( "FileNameReplaceStringList" )
STRUCT Rect w
numItems = ItemsInList( replaceStringList, ";" )
npnts = numItems + 5
Make /O/N=( npnts )/T $df+rName = ""
Make /O/N=( npnts )/T $df+wName = ""
Wave /T rtemp = $df+rName
Wave /T wtemp = $df+wName
for ( icnt = 0 ; icnt < numItems ; icnt += 1 )
itemStr = StringFromList( icnt, replaceStringList, ";" )
replaceThisStr = StringFromList( 0, itemStr, "," )
withThisStr = StringFromList( 1, itemStr, "," )
if ( strlen( replaceThisStr ) > 0 )
rtemp[ jcnt ] = replaceThisStr
wtemp[ jcnt ] = withThisStr
jcnt += 1
endif
endfor
DoWindow /K $tName
NMWinCascadeRect( w )
Edit /K=1/N=$tName/W=(w.left,w.top,w.right,w.bottom) as title
SetWindow $tName hook(NMFileNameRepStr)=NMFileNameReplaceStrTableHook
AppendToTable /W=$tName rtemp, wtemp
End // NMFileNameReplaceStringListEdit
//****************************************************************
//****************************************************************
//****************************************************************
Function NMFileNameReplaceStrListUpdate()
Variable icnt
String df = NMDF
String rName = "ReplaceThisStr"
String wName = "WithThisStr"
String replaceStringList = ""
Wave /T rtemp = $df+rName
Wave /T wtemp = $df+wName
if ( numpnts( rtemp ) != numpnts( wtemp ) )
return -1
endif
for ( icnt = 0 ; icnt < numpnts( rtemp ) ; icnt += 1 )
if ( strlen( rtemp[ icnt ] ) > 0 )
replaceStringList += rtemp[ icnt ] + "," + wtemp[ icnt ] + ";"
endif
endfor
NMHistory( "NM Config FileNameReplaceStringList = " + NMQuotes( replaceStringList ) )
NMConfigStrSet( "NeuroMatic", "FileNameReplaceStringList", replaceStringList, history = 1 )
End // NMFileNameReplaceStrListUpdate
//****************************************************************
//****************************************************************
//****************************************************************
Function NMFileNameReplaceStrTableHook( s )
STRUCT WMWinHookStruct &s
switch( s.eventCode )
case 1:
case 2:
NMFileNameReplaceStrListUpdate()
break
endswitch
return 0
End // NMFileNameReplaceStrTableHook
//****************************************************************
//****************************************************************
//****************************************************************
Function /S NMSaveWavesToDisk( wNameOrList, extFolderPath [ fileName, fileType, overWrite, saveWaveNames ] )
String wNameOrList // wName, or list of wave names for General or Delimited text
String extFolderPath // external folder path where to save waves
String fileName // e.g. "RecordA0" ( if not passed, fileName is the first name in wNameOrList )
String fileType // "Igor Binary" or "Igor Text" or "General Text" or "Delimited Text"
Variable overWrite // ( 0 ) no, default ( 1 ) yes ( be careful! )
Variable saveWaveNames // ( 0 ) no ( 1 ) yes ( for General or Delimited text )
Variable icnt, wcnt, ok, fType
String wName, fileExt, fList, oList
String path = "NMSaveWavesPath"
if ( !WavesExist( wNameOrList ) )
return ""
endif
if ( strlen( extFolderPath ) == 0 )
extFolderPath = NMGetExternalFolderPath( "select folder to save waves", "" )
endif
if ( strlen( extFolderPath ) == 0 )
return ""
endif
extFolderPath = LastPathColon( extFolderPath, 1 )
if ( ParamIsDefault( fileType ) )
if ( ItemsInList( wNameOrList ) > 1 )
fileType = "Delimited Text"
else
fileType = "Igor Binary"
endif
endif
fType = NMWaveFileTypeNum( fileType )
if ( numtype( fType ) > 0 )
return NM2ErrorStr( 20, "fileType", fileType )
endif
fileExt = NMWaveFileTypeExt( fType )
if ( ParamIsDefault( fileName ) )
wName = StringFromList( 0, wNameOrList )
wName = NMChild( wName )
fileName = wName + fileExt
else
fileName = NMChild( fileName )
fileName = FileExtCheck( fileName, ".*", 0 ) // remove extension if it exists
fileName += fileExt
endif
if ( ParamIsDefault( overWrite ) )
overWrite = 0
else
overWrite = BinaryCheck( overWrite )
endif
if ( ParamIsDefault( saveWaveNames ) )
saveWaveNames = 0
else
saveWaveNames = BinaryCheck( saveWaveNames )
endif
for ( icnt = 0; icnt < 4; icnt += 1 ) // 4 tries to enter new name
if ( overWrite || !FileExists( extFolderPath + fileName ) )
ok = 1
break
endif
DoAlert /T=( "NM Save Waves To Disk" ) 2, "File " + NMQuotes( fileName ) + " already exists. Do you want to replace it?"
if ( V_flag == 1 )
ok = 1
break
elseif ( V_flag == 2 )
Prompt fileName, "enter new file name:"
DoPrompt NMPromptStr( "Save Waves" ), fileName
if ( V_flag == 1 )
return NMCancel
endif
elseif ( V_flag == 3 )
return NMCancel
endif
endfor
if ( !ok )
return NMCancel
endif
NewPath /Q/O $path, extFolderPath
if ( V_flag != 0 )
return "" // error in creating path
endif
if ( fType < 2 )
wName = StringFromList( 0, wNameOrList )
if ( fType == 0 )
Save /C/O/P=$path $wName as fileName
elseif ( fType == 1 )
Save /T/O/P=$path $wName as fileName
else
fileName = ""
endif
else
if ( ItemsInList( wNameOrList ) == 1 )
wName = StringFromList( 0, wNameOrList )
if ( saveWaveNames )
if ( fType == 2 )
Save /G/O/P=$path/W $wName as fileName
elseif ( fType == 3 )
Save /J/O/P=$path/W $wName as fileName
else
fileName = ""
endif
else
if ( fType == 2 )
Save /G/O/P=$path $wName as fileName
elseif ( fType == 3 )
Save /J/O/P=$path $wName as fileName
else
fileName = ""
endif
endif
elseif ( ItemsInList( wNameOrList ) > 1 )
if ( saveWaveNames )
if ( fType == 2 )
Save /B/G/O/P=$path/W wNameOrList as fileName
elseif ( fType == 3 )
Save /B/J/O/P=$path/W wNameOrList as fileName
else
fileName = ""
endif
else
if ( fType == 2 )
Save /B/G/O/P=$path wNameOrList as fileName
elseif ( fType == 3 )
Save /B/J/O/P=$path wNameOrList as fileName
else
fileName = ""
endif
endif
else
fileName = ""
endif
endif
KillPath /Z $path
return fileName
End // NMSaveWavesToDisk
//****************************************************************
//****************************************************************
//****************************************************************
//
// Binary object file functions defined below...
// Igor 4 : NeuroMatic binary files
// Igor 5 : Igor 5 packed binary files
//
//****************************************************************
//****************************************************************
//****************************************************************
Function FileBinLoadCurrent()
if ( !DataFolderExists( "root:OpenFileTemp:" ) )
NewDataFolder /O root:OpenFileTemp
endif
String CurrentFile = StrVarOrDefault( "CurrentFile", "" )
String folder = NMFileBinOpen( 0, "?", "root:OpenFileTemp:", "", CurrentFile, 1, nmPrefix = 0 )
if ( DataFolderExists( "root:OpenFileTemp:" ) )
KillDataFolder root:OpenFileTemp:
endif
End // FileBinLoadCurrent