Argh. I *thought* the FCU had been installed smoothly. But then I discovered some serious problems with OneDrive... I use OneDrive to sync files between 4 computers, all using the latest FCU with 64 bit Windows 10. So I have the OneDrive directory under my user name, and files in this folder are synced with the cloud.
Question: Is the new OneDrive of FCU really a directory, or is it something else? Why do I ask this question?
Case 1: traversing directory tree using (commercial tool) MATLAB, commands in console window...
>> pwd
'c:\Users'
>> cd MyUser
>> pwd
'C:\Users\MyUser'
>> cd OneDrive
... error message -- doesn't recognize OneDrive as directory
Case 2: problems with OneDrive on free tool Julia, see
www.julialang.org (64 bit version)
a. Create a file named "test.jl", containing, e.g., the following single line: "y = 3.5".
b. Save this file in directory "c:\Users\MyUser". Also, save an identical copy under "c:\Users\MyUser\OneDrive"; here replace "MyUser" with your user name.
c. Start up Julia, and navigate to the first location...
julia> cd("c:/Users/MyUser")
julia> pwd()
"c:\\Users\\MyUser"
julia> include("test.jl")
3.5
julia> cd("c:/Users/MyUser/OneDrive")
julia> pwd()
"c:\\Users\\MyUser\\OneDrive"
julia> include("test.jl")
ERROR: could not open file c:\Users\MyUser\OneDrive\test.jl
Stacktrace:
[1] include_from_node1
:String) at .\loading.jl:569
[2] include
:String) at .\sysimg.jl:14
In Julia, it is possible to traverse the directory tree... but there is still a problem with the OneDrive directory.
For both MATLAB and Julia, this worked prior to FCU.
QUESTION: Bug or "feature"? Or simply some settings that need to be changed?