Questions tagged [microsoft-distributed-file-system]

For programming questions about Microsoft's Distributed File System (DFS). (For questions about depth-first search, use the [depth-first-search] tag.)

176 questions
-1
votes
1 answer

maze generation algorithm in c with DFS

recently i read this topic about generating mazes in c . see here https://www.algosome.com/articles/maze-generation-depth-first.html and i want to write it in c . here is my code and it's not working right . #include #include…
-1
votes
1 answer

DFS starts a new metadata refresh of the namespace every hour and never finishes - replication halted

My organisation uses DFS to replicate three servers - a hub at one site, a spoke at one site, and a spoke at a remote site. They contain a number of folders that are separate shares, all within the same replication group. So the namespace is…
-1
votes
1 answer

DFS implementation error?

I am using dfs algorithm to implement from geeksforgeeks.org link here but when ever i have tried to run on compiler it is giving this error Note: p1_dfs.java uses unchecked or unsafe operations. Note: Recompile with -Xlint:unchecked for…
-1
votes
1 answer

Can you replicate DFS share into Azure from On Prem?

Can you replicate DFS share into Azure from On Prem? If so which storage do i need to do it? Would it be easier to setup a virtual machine in Azure and use DFS-R to take advantage of it over a VPN tunnel?
-1
votes
1 answer

Will Distributed file system on 2 FTP servers work in two different data centers?

Currently we have 2 VMs in a VNet , both have FTP and DFS roles installed on them , also DFS replication is enabled. The main question is that , if we have the above VMs in two different VNets (in different locations), will it allow me for…
-1
votes
1 answer

What is this file SimilarityTable_1 (8GB)

I created a new filesystem (F: - destination) and synced with another (E:\ - source). Curiously my new FS had 7GB of difference from source FS. I found out that the file below has 8GB (size) and 1GB (used) in source and 8GB (size) and 8GB (used) in…
-1
votes
2 answers

Errors when running ASP Classic alongside ASP.NET in IIS 7.5

I am currently trying to migrate some websites from IIS6 to IIS7 and have run into a problem. For the most part, my websites are written in Classic ASP. However, within one website I have two web applications running asp.net. Something like…
-2
votes
1 answer

DFS iterative function does not work properly

I'm trying to do some basic function on a graph (using a boolean matrix). They all work except the DFS one. It give me some random number. I'm trying to resolve this problem since few hours now, but still nothing.. (the code compile, but what it…
A.Arthur
  • 3
  • 4
-4
votes
1 answer

How can i retrieve server name from a UNC path which leads to a DFS file

I have a DFS UNC path \\rootxx\xx\xx\ which leads to a file in a remote server ,how can i retrieve the server name , where the file resides using perl.
-4
votes
1 answer

When i try to compile i got expected * but argument is type **, and warnings passing argument incompatible pointer type

listT *Stos; void DFS(int wierz) { int v; nodeT *p; addfront(&Stos, wierz); tabzaznaczen[wierz] = 1; while (Stos) { removefront(&Stos, &v); printf("%d\n", v); for (p = tabwierz[v].front; p; p = p->next) { if…
1 2 3
11
12